diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2010-06-11 12:08:51 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@de.ibm.com> | 2010-06-11 12:08:51 +0000 |
commit | b7a8b4ef6b4203072015422e0601440f60f29adb (patch) | |
tree | 1a27745f7294dce2a1087c480627779095e8fa17 /gdb/gregset.h | |
parent | 9bcd0325fea4de9bd1a798f6c94321bd992364be (diff) | |
download | gdb-b7a8b4ef6b4203072015422e0601440f60f29adb.zip gdb-b7a8b4ef6b4203072015422e0601440f60f29adb.tar.gz gdb-b7a8b4ef6b4203072015422e0601440f60f29adb.tar.bz2 |
* gregset.h (GDB_FPXREGSET_T): Remove.
(gdb_fpxregset_t): Likewise.
(supply_fpxregset): Remove prototype.
(fill_fpxregset): Likewise.
* i386-linux-nat.c (supply_fpxregset): Remove.
(fill_fpxregset): Likewise.
(fetch_fpxregs): Inline supply_fpxregset call.
(store_fpxregs): Inline fill_fpxregset call.
* config/i386/linux.mh: Set NAT_FILE to config/nm-linux.h.
* config/i386/nm-linux.h: Remove file.
Diffstat (limited to 'gdb/gregset.h')
-rw-r--r-- | gdb/gregset.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/gdb/gregset.h b/gdb/gregset.h index c18ee51..8008189 100644 --- a/gdb/gregset.h +++ b/gdb/gregset.h @@ -57,20 +57,4 @@ extern void fill_gregset (const struct regcache *regcache, extern void fill_fpregset (const struct regcache *regcache, gdb_fpregset_t *fpregs, int regno); -#ifdef FILL_FPXREGSET -/* GNU/Linux i386: Copy register values between GDB's internal register cache - and the i386 extended floating point registers. */ - -#ifndef GDB_FPXREGSET_T -#define GDB_FPXREGSET_T elf_fpxregset_t -#endif - -typedef GDB_FPXREGSET_T gdb_fpxregset_t; - -extern void supply_fpxregset (struct regcache *regcache, - const gdb_fpxregset_t *fpxregs); -extern void fill_fpxregset (const struct regcache *regcache, - gdb_fpxregset_t *fpxregs, int regno); -#endif - #endif |