diff options
author | Pierre Muller <muller@sourceware.org> | 2013-09-26 07:00:00 +0000 |
---|---|---|
committer | Pierre Muller <muller@sourceware.org> | 2013-09-26 07:00:00 +0000 |
commit | 5b856f360b037357d147f20b7c20d3d463692b18 (patch) | |
tree | be03b5ce1e612f80d125cd1ac2594d4eecb352e8 /gdb/amd64-windows-tdep.c | |
parent | d3e819815acd7b1b075bc0c7029dc07dd935f3d2 (diff) | |
download | gdb-5b856f360b037357d147f20b7c20d3d463692b18.zip gdb-5b856f360b037357d147f20b7c20d3d463692b18.tar.gz gdb-5b856f360b037357d147f20b7c20d3d463692b18.tar.bz2 |
Replace constant values 8 to 15 by AMD64_R8_REGNUM to
AMD64_R15_REGNUM when a register index is expected.
* amd64-windows-tdep.c (amd64_windows_dummy_call_integer_regs):
Substitute in array.
* amd64-tdep.c (amd64_dwarf_regmap): Ditto.
(amd64_push_arguments): Substitute in integer_regnum array.
Diffstat (limited to 'gdb/amd64-windows-tdep.c')
-rw-r--r-- | gdb/amd64-windows-tdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/amd64-windows-tdep.c b/gdb/amd64-windows-tdep.c index c09262a..a75d6ba 100644 --- a/gdb/amd64-windows-tdep.c +++ b/gdb/amd64-windows-tdep.c @@ -38,8 +38,8 @@ static int amd64_windows_dummy_call_integer_regs[] = { AMD64_RCX_REGNUM, /* %rcx */ AMD64_RDX_REGNUM, /* %rdx */ - 8, /* %r8 */ - 9 /* %r9 */ + AMD64_R8_REGNUM, /* %r8 */ + AMD64_R9_REGNUM /* %r9 */ }; /* Return nonzero if an argument of type TYPE should be passed |