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/mips-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/mips-xdep.c')
-rw-r--r-- | gdb/mips-xdep.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/gdb/mips-xdep.c b/gdb/mips-xdep.c index a77901281..b7e669d 100644 --- a/gdb/mips-xdep.c +++ b/gdb/mips-xdep.c @@ -57,12 +57,16 @@ fetch_core_registers () return; } +/* ARGSUSED */ void -fetch_inferior_registers () +fetch_inferior_registers (regno) + int regno; { return; } +/* ARGSUSED */ +void store_inferior_registers (regno) int regno; { @@ -88,9 +92,9 @@ store_inferior_registers (regno) /* Get all registers from the inferior */ void -fetch_inferior_registers () +fetch_inferior_registers (regno) + int regno; { - register int regno; register unsigned int regaddr; char buf[MAX_REGISTER_RAW_SIZE]; register int i; |