diff options
author | John Gilmore <gnu@cygnus> | 1992-02-22 01:46:16 +0000 |
---|---|---|
committer | John Gilmore <gnu@cygnus> | 1992-02-22 01:46:16 +0000 |
commit | 1ab3bf1b148d31aad66735f52f9ff72af8769cd0 (patch) | |
tree | f599e61700fc54d6ecd3d090e3d01cf6fa66a801 /gdb/hp300ux-xdep.c | |
parent | 8e48d87af60233cc7e8dc18ab4e8f63d223ac20f (diff) | |
download | gdb-1ab3bf1b148d31aad66735f52f9ff72af8769cd0.zip gdb-1ab3bf1b148d31aad66735f52f9ff72af8769cd0.tar.gz gdb-1ab3bf1b148d31aad66735f52f9ff72af8769cd0.tar.bz2 |
* Check in Fred Fish's changes in these modules. Fred
will make ChangeLog entries for all of them.
Diffstat (limited to 'gdb/hp300ux-xdep.c')
-rw-r--r-- | gdb/hp300ux-xdep.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gdb/hp300ux-xdep.c b/gdb/hp300ux-xdep.c index 801c471..a7f8f72 100644 --- a/gdb/hp300ux-xdep.c +++ b/gdb/hp300ux-xdep.c @@ -135,7 +135,6 @@ fetch_inferior_registers (regno) int regno; { struct user u; - register int regno; register unsigned int ar0_offset; ar0_offset = (INFERIOR_AR0 (u)); @@ -157,6 +156,7 @@ fetch_inferior_registers (regno) If REGNO is -1, do this for all registers. Otherwise, REGNO specifies which register (so we can save time). */ +void store_inferior_registers (regno) register int regno; { @@ -194,10 +194,11 @@ store_inferior_registers (regno) #endif /* HPUX_VERSION_5 */ void -fetch_core_registers (core_reg_sect, core_reg_size, which) +fetch_core_registers (core_reg_sect, core_reg_size, which, reg_addr) char *core_reg_sect; int core_reg_size; int which; + unsigned int reg_addr; /* Unused in this version */ { int val, regno; struct user u; |