*** empty log message ***
[deliverable/binutils-gdb.git] / opcodes / tilegx-opc.c
index cb8a03ffb17ac4d67c530d4324d5662c0a47e311..4f97019337b6fb1dc811eb83eabb86b5cab1b2df 100644 (file)
@@ -7976,19 +7976,19 @@ const char * const tilegx_register_names[] =
 static const struct tilegx_opcode *
 find_opcode (tilegx_bundle_bits bits, const unsigned short *table)
 {
-  int index = 0;
+  int i = 0;
 
   while (1)
     {
-      unsigned short bitspec = table[index];
+      unsigned short bitspec = table[i];
       unsigned int bitfield =
        ((unsigned int)(bits >> (bitspec & 63))) & (bitspec >> 6);
 
-      unsigned short next = table[index + 1 + bitfield];
+      unsigned short next = table[i + 1 + bitfield];
       if (next <= TILEGX_OPC_NONE)
        return & tilegx_opcodes[next];
 
-      index = next - TILEGX_OPC_NONE;
+      i = next - TILEGX_OPC_NONE;
     }
 }
 
This page took 0.022993 seconds and 4 git commands to generate.