From a256f19b8fb9cf97c8d6d040d5a989b2d199bbaa Mon Sep 17 00:00:00 2001 From: bde Date: Fri, 6 Jan 1995 14:52:06 +0000 Subject: Handle segment registers (except %fs and %gs). --- gnu/usr.bin/binutils/gdb/i386/tm.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'gnu/usr.bin/binutils') diff --git a/gnu/usr.bin/binutils/gdb/i386/tm.h b/gnu/usr.bin/binutils/gdb/i386/tm.h index a33a668..b3b05db 100644 --- a/gnu/usr.bin/binutils/gdb/i386/tm.h +++ b/gnu/usr.bin/binutils/gdb/i386/tm.h @@ -25,8 +25,13 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* 386BSD cannot handle the segment registers. */ /* BSDI can't handle them either. */ +/* FreeBSD cannot handle %fs or %gs. */ #undef NUM_REGS +#ifdef __FreeBSD__ +#define NUM_REGS 14 +#else #define NUM_REGS 10 +#endif /* On 386 bsd, sigtramp is above the user stack and immediately below the user area. Using constants here allows for cross debugging. -- cgit v1.1