diff options
author | Kevin Buettner <kevinb@redhat.com> | 2000-02-22 18:47:41 +0000 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2000-02-22 18:47:41 +0000 |
commit | 5f49bbc6be5284b5a8f9d789ac79eac5a54b515a (patch) | |
tree | 79d5ad9a321b244e90727202bc0bc54c3a8b271e /gdb/ppc-linux-nat.c | |
parent | 4436ce2ee5c097800c3483ee645c34c2fcc38a6b (diff) | |
download | gdb-5f49bbc6be5284b5a8f9d789ac79eac5a54b515a.tar.gz |
Cleanups and signal handler backtrace fix for GNU/Linux PPC port.
Diffstat (limited to 'gdb/ppc-linux-nat.c')
-rw-r--r-- | gdb/ppc-linux-nat.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gdb/ppc-linux-nat.c b/gdb/ppc-linux-nat.c index 1522f96b80f..2f242a8427e 100644 --- a/gdb/ppc-linux-nat.c +++ b/gdb/ppc-linux-nat.c @@ -54,6 +54,7 @@ ppc_register_u_addr (int ustart, int regnum) return (ustart + 4 * regmap[regnum]); } +void supply_gregset (gregset_t * gregsetp) { int regi; @@ -66,6 +67,7 @@ supply_gregset (gregset_t * gregsetp) supply_register (regi, (char *) (regp + regmap[regi])); } +void supply_fpregset (fpregset_t * fpregsetp) { int regi; |