diff options
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/i386-linux-nat.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index a5fae82..04168d9 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2001-11-18 Kevin Buettner <kevinb@redhat.com> + + * i386-linux-nat.c (fill_gregset): Fix botched regcache_collect() + conversion for I386_LINUX_ORIG_EAX_REGNUM. + 2001-11-18 Andrew Cagney <ac131313@redhat.com> * config/i386/embed.mt (TM_FILE): Set to tm-i386.h. diff --git a/gdb/i386-linux-nat.c b/gdb/i386-linux-nat.c index df0838b..e91c8fc 100644 --- a/gdb/i386-linux-nat.c +++ b/gdb/i386-linux-nat.c @@ -325,7 +325,7 @@ fill_gregset (elf_gregset_t *gregsetp, int regno) regcache_collect (i, regp + regmap[i]); if (regno == -1 || regno == I386_LINUX_ORIG_EAX_REGNUM) - regcache_collect (I386_LINUX_ORIG_EAX_REGNUM, regp + regmap[ORIG_EAX]); + regcache_collect (I386_LINUX_ORIG_EAX_REGNUM, regp + ORIG_EAX); } #ifdef HAVE_PTRACE_GETREGS |