aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorMark Kettenis <kettenis@gnu.org>2001-11-08 00:03:52 +0000
committerMark Kettenis <kettenis@gnu.org>2001-11-08 00:03:52 +0000
commit8cf03c4c872abfc39d15105c888fe62ed71329dc (patch)
tree842eb4116cdaabec75e586ab02954aa374aca746 /gdb
parent3a27e00009c60043fee351117419f64f7f4bb9ff (diff)
downloadgdb-8cf03c4c872abfc39d15105c888fe62ed71329dc.zip
gdb-8cf03c4c872abfc39d15105c888fe62ed71329dc.tar.gz
gdb-8cf03c4c872abfc39d15105c888fe62ed71329dc.tar.bz2
* config/i386/tm-linux.h (I386_LINUX_ORIG_EAX_REGNUM): Define in
terms of NUM_GREGS, NUM_FREGS and NUM_SSE_REGS instead of hardcoding the register number.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog6
-rw-r--r--gdb/config/i386/tm-linux.h2
2 files changed, 7 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 0cd341d..9ad8d3c 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,9 @@
+2001-11-08 Mark Kettenis <kettenis@gnu.org>
+
+ * config/i386/tm-linux.h (I386_LINUX_ORIG_EAX_REGNUM): Define in
+ terms of NUM_GREGS, NUM_FREGS and NUM_SSE_REGS instead of
+ hardcoding the register number.
+
2001-11-07 Andrew Cagney <ac131313@redhat.com>
* gdbarch.sh (USE_STRUCT_CONVENTION): Default to
diff --git a/gdb/config/i386/tm-linux.h b/gdb/config/i386/tm-linux.h
index 25d9782..820ac8b 100644
--- a/gdb/config/i386/tm-linux.h
+++ b/gdb/config/i386/tm-linux.h
@@ -34,7 +34,7 @@
/* Register number for the "orig_eax" pseudo-register. If this
pseudo-register contains a value >= 0 it is interpreted as the
system call number that the kernel is supposed to restart. */
-#define I386_LINUX_ORIG_EAX_REGNUM 41
+#define I386_LINUX_ORIG_EAX_REGNUM (NUM_GREGS + NUM_FREGS + NUM_SSE_REGS)
/* Adjust a few macros to deal with this extra register. */