* amd64-tdep.c (amd64_get_unused_input_int_reg): Rename `index' to
authorAndrey Smirnov <ndreys@sourceware.org>
Sun, 11 Dec 2011 02:41:31 +0000 (02:41 +0000)
committerAndrey Smirnov <ndreys@sourceware.org>
Sun, 11 Dec 2011 02:41:31 +0000 (02:41 +0000)
`idx'(-Wshadow).

gdb/ChangeLog
gdb/amd64-tdep.c

index ea30ffb..3f7a5fa 100644 (file)
@@ -1,5 +1,10 @@
 2011-12-10  Andrey Smirnov  <andrew.smirnov@gmail.com>
 
+       * amd64-tdep.c (amd64_get_unused_input_int_reg): Rename `index' to
+       `idx'(-Wshadow).
+
+2011-12-10  Andrey Smirnov  <andrew.smirnov@gmail.com>
+
        * amd64-linux-tdep.c (amd64_canonicalize_syscall): Rename
        `syscall' to `syscall_number'(-Wshadow).
 
index 803a20f..987f80d 100644 (file)
@@ -1081,9 +1081,9 @@ amd64_get_unused_input_int_reg (const struct amd64_insn *details)
       if (have_sib)
        {
          int base = SIB_BASE_FIELD (details->raw_insn[details->modrm_offset + 1]);
-         int index = SIB_INDEX_FIELD (details->raw_insn[details->modrm_offset + 1]);
+         int idx = SIB_INDEX_FIELD (details->raw_insn[details->modrm_offset + 1]);
          used_regs_mask |= 1 << base;
-         used_regs_mask |= 1 << index;
+         used_regs_mask |= 1 << idx;
        }
       else
        {