diff options
author | Kevin Buettner <kevinb@redhat.com> | 2000-09-30 05:41:39 +0000 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2000-09-30 05:41:39 +0000 |
commit | 8ae45c112d75d7fa9a2436357911d2a93f2d3632 (patch) | |
tree | 163cb6aaa28327e2165c98826e022057dc3d64e2 /gdb/ppc-linux-nat.c | |
parent | d0849a9a5a50d53a85228bd7efd0505a8f307c48 (diff) | |
download | binutils-gdb-8ae45c112d75d7fa9a2436357911d2a93f2d3632.tar.gz |
Make definitions of supply_gregset, fill_gregset, supply_fpregset,
and fill_fpregset match declarations in gregset.h.
Diffstat (limited to 'gdb/ppc-linux-nat.c')
-rw-r--r-- | gdb/ppc-linux-nat.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/ppc-linux-nat.c b/gdb/ppc-linux-nat.c index 7388254aa4c..d562eca6f60 100644 --- a/gdb/ppc-linux-nat.c +++ b/gdb/ppc-linux-nat.c @@ -58,7 +58,7 @@ ppc_register_u_addr (int ustart, int regnum) } void -supply_gregset (gregset_t * gregsetp) +supply_gregset (gdb_gregset_t *gregsetp) { int regi; register greg_t *regp = (greg_t *) gregsetp; @@ -71,7 +71,7 @@ supply_gregset (gregset_t * gregsetp) } void -fill_gregset (gregset_t *gregsetp, int regno) +fill_gregset (gdb_gregset_t *gregsetp, int regno) { int regi; greg_t *regp = (greg_t *) gregsetp; @@ -93,7 +93,7 @@ fill_gregset (gregset_t *gregsetp, int regno) } void -supply_fpregset (fpregset_t * fpregsetp) +supply_fpregset (gdb_fpregset_t * fpregsetp) { int regi; for (regi = 0; regi < 32; regi++) @@ -108,7 +108,7 @@ supply_fpregset (fpregset_t * fpregsetp) them all. */ void -fill_fpregset (fpregset_t *fpregsetp, int regno) +fill_fpregset (gdb_fpregset_t *fpregsetp, int regno) { int regi; char *to; |