diff options
author | Mark Kettenis <kettenis@gnu.org> | 2001-11-12 22:27:35 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2001-11-12 22:27:35 +0000 |
commit | 226271d3c05cf60c66c65b2492fdd12418f4f616 (patch) | |
tree | bff9a280848c5f2d73996962f3979584f79806c0 | |
parent | ae948b86fe3cba210a95dd78fd72de98ec02266d (diff) | |
download | gdb-226271d3c05cf60c66c65b2492fdd12418f4f616.zip gdb-226271d3c05cf60c66c65b2492fdd12418f4f616.tar.gz gdb-226271d3c05cf60c66c65b2492fdd12418f4f616.tar.bz2 |
* i386-tdep.h (FPU_REG_RAW_SIZE): Define unconditionally.
* i387-nat.c, i387-tdep.c: Unconditionally include "i386-tdep.h".
* config/i386/tm-i386.h (FPU_REG_RAW_SIZE): Removed.
(SIZEOF_FPU_REGS): Don't use FPU_REG_RAW_SIZE here.
-rw-r--r-- | gdb/ChangeLog | 7 | ||||
-rw-r--r-- | gdb/config/i386/tm-i386.h | 4 | ||||
-rw-r--r-- | gdb/i386-tdep.h | 2 | ||||
-rw-r--r-- | gdb/i387-nat.c | 3 | ||||
-rw-r--r-- | gdb/i387-tdep.c | 2 |
5 files changed, 8 insertions, 10 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index dc28391..d7f2111 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,10 @@ +2001-11-11 Mark Kettenis <kettenis@elgar.my.domain> + + * i386-tdep.h (FPU_REG_RAW_SIZE): Define unconditionally. + * i387-nat.c, i387-tdep.c: Unconditionally include "i386-tdep.h". + * config/i386/tm-i386.h (FPU_REG_RAW_SIZE): Removed. + (SIZEOF_FPU_REGS): Don't use FPU_REG_RAW_SIZE here. + 2001-11-12 Jim Blandy <jimb@redhat.com> Patch from Andreas Schwab <schwab@suse.de>: diff --git a/gdb/config/i386/tm-i386.h b/gdb/config/i386/tm-i386.h index 80e90c0e..7661bd8 100644 --- a/gdb/config/i386/tm-i386.h +++ b/gdb/config/i386/tm-i386.h @@ -176,8 +176,6 @@ extern CORE_ADDR i386_saved_pc_after_call (struct frame_info *frame); #define IS_FP_REGNUM(n) (FP0_REGNUM <= (n) && (n) <= FP7_REGNUM) #define IS_SSE_REGNUM(n) (XMM0_REGNUM <= (n) && (n) <= XMM7_REGNUM) -#define FPU_REG_RAW_SIZE (10) - /* Return the name of register REG. */ #define REGISTER_NAME(reg) i386_register_name ((reg)) @@ -203,7 +201,7 @@ extern int i386_dwarf_reg_to_regnum (int reg); file, so summing up the sizes of those portions actually present yields REGISTER_BYTES. */ #define SIZEOF_GREGS (NUM_GREGS * 4) -#define SIZEOF_FPU_REGS (8 * FPU_REG_RAW_SIZE) +#define SIZEOF_FPU_REGS (8 * 10) #define SIZEOF_FPU_CTRL_REGS \ ((LAST_FPU_CTRL_REGNUM - FIRST_FPU_CTRL_REGNUM + 1) * 4) #define SIZEOF_SSE_REGS (8 * 16 + 4) diff --git a/gdb/i386-tdep.h b/gdb/i386-tdep.h index 39798ec..b8f3d40 100644 --- a/gdb/i386-tdep.h +++ b/gdb/i386-tdep.h @@ -22,9 +22,7 @@ #ifndef I386_TDEP_H #define I386_TDEP_H -#if !defined (FPU_REG_RAW_SIZE) || (GDB_MULTI_ARCH > GDB_MULTI_ARCH_PARTIAL) #define FPU_REG_RAW_SIZE 10 -#endif #if !defined (XMM0_REGNUM) || (GDB_MULTI_ARCH > GDB_MULTI_ARCH_PARTIAL) #define XMM0_REGNUM FIRST_XMM_REGNUM diff --git a/gdb/i387-nat.c b/gdb/i387-nat.c index 44a5e8a..b15184e 100644 --- a/gdb/i387-nat.c +++ b/gdb/i387-nat.c @@ -24,10 +24,7 @@ #include "regcache.h" #include "i387-nat.h" - -#if GDB_MULTI_ARCH > 0 #include "i386-tdep.h" -#endif /* FIXME: kettenis/2000-05-21: Right now more than a few i386 targets define their own routines to manage the floating-point registers in diff --git a/gdb/i387-tdep.c b/gdb/i387-tdep.c index bb69b80..2a6f77c 100644 --- a/gdb/i387-tdep.c +++ b/gdb/i387-tdep.c @@ -30,9 +30,7 @@ #include "gdb_assert.h" #include "doublest.h" -#if GDB_MULTI_ARCH >0 #include "i386-tdep.h" -#endif /* FIXME: Eliminate the next two functions when we have the time to change all the callers. */ |