summaryrefslogtreecommitdiff
path: root/opcodes/tilepro-opc.c
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2011-06-29 20:46:11 +0000
committerH.J. Lu <hjl.tools@gmail.com>2011-06-29 20:46:11 +0000
commit110fa5bae13fac3c847e06dc98d4231281e12c26 (patch)
treee3d25ffdd47b483e66e084ab409853c0c8d811ef /opcodes/tilepro-opc.c
parent1bdd7888a8407c57bbaf16b5db4e39d5e82c4619 (diff)
downloadbinutils-redhat-110fa5bae13fac3c847e06dc98d4231281e12c26.tar.gz
Replace "index" with "i".
2011-06-29 H.J. Lu <hongjiu.lu@intel.com> * tilegx-opc.c (find_opcode): Replace "index" with "i". * tilepro-opc.c (find_opcode): Likewise.
Diffstat (limited to 'opcodes/tilepro-opc.c')
-rw-r--r--opcodes/tilepro-opc.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/opcodes/tilepro-opc.c b/opcodes/tilepro-opc.c
index c79c911e65..c3f6be4b46 100644
--- a/opcodes/tilepro-opc.c
+++ b/opcodes/tilepro-opc.c
@@ -10103,19 +10103,19 @@ const struct tilepro_opcode *
find_opcode (tilepro_bundle_bits bits, tilepro_pipeline pipe)
{
const unsigned short *table = tilepro_bundle_decoder_fsms[pipe];
- 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 <= TILEPRO_OPC_NONE)
return &tilepro_opcodes[next];
- index = next - TILEPRO_OPC_NONE;
+ i = next - TILEPRO_OPC_NONE;
}
}