From: J.T. Conklin Date: Thu, 7 Mar 1996 20:13:45 +0000 (+0000) Subject: * i386b-nat.c: Revert part of Mar 5 change. FreeBSD collapsed the X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=43ece84dc3425b5f8459469c525429e156029080;p=binutils-gdb.git * i386b-nat.c: Revert part of Mar 5 change. FreeBSD collapsed the s* and t* symbols too. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 2a9649a0b01..003e8412095 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +Thu Mar 7 12:09:51 1996 J.T. Conklin + + * i386b-nat.c: Revert part of Mar 5 change. FreeBSD collapsed the + s* and t* symbols too. + Thu Mar 7 15:18:51 1996 James G. Smith * symfile.c (generic_load): Avoid division by zero. diff --git a/gdb/i386b-nat.c b/gdb/i386b-nat.c index bb78d7288dd..d273cabeeb3 100644 --- a/gdb/i386b-nat.c +++ b/gdb/i386b-nat.c @@ -81,12 +81,25 @@ static int tregmap[] = tEIP, tEFLAGS, tCS, tSS }; +#ifdef sEAX static int sregmap[] = { sEAX, sECX, sEDX, sEBX, sESP, sEBP, sESI, sEDI, sEIP, sEFLAGS, sCS, sSS }; +#else /* No sEAX */ + +/* FreeBSD has decided to collapse the s* and t* symbols. So if the s* + ones aren't around, use the t* ones for sregmap too. */ + +static int sregmap[] = +{ + tEAX, tECX, tEDX, tEBX, + tESP, tEBP, tESI, tEDI, + tEIP, tEFLAGS, tCS, tSS +}; +#endif /* No sEAX */ /* blockend is the value of u.u_ar0, and points to the place where ES is stored. */