diff options
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/x86-64-linux-nat.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 50cc991..b7bc52c 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2002-09-18 Michal Ludvig <mludvig@suse.cz> + + * x86-64-linux-nat.c (x86_64_regmap): Added CS and SS + registers. + 2002-09-17 Andrew Cagney <ac131313@redhat.com> * NEWS: Mention that MIPS $fp behavior changed. diff --git a/gdb/x86-64-linux-nat.c b/gdb/x86-64-linux-nat.c index 1372410..7e6417b 100644 --- a/gdb/x86-64-linux-nat.c +++ b/gdb/x86-64-linux-nat.c @@ -43,7 +43,7 @@ static int x86_64_regmap[] = { RSI, RDI, RBP, RSP, R8, R9, R10, R11, R12, R13, R14, R15, - RIP, EFLAGS, + RIP, EFLAGS, CS, SS, DS, ES, FS, GS }; |