diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2011-06-29 20:46:11 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2011-06-29 20:46:11 +0000 |
commit | 906efcbc31606e530623c356b2fbdca336131f86 (patch) | |
tree | c72a48b4294acf8ea4506e41272beb62bf95ff9d /opcodes/tilepro-opc.c | |
parent | 13408f1edda36e182af15fa250ddd38f52ee8564 (diff) | |
download | binutils-gdb-906efcbc31606e530623c356b2fbdca336131f86.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.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/opcodes/tilepro-opc.c b/opcodes/tilepro-opc.c index c79c911e655..c3f6be4b46a 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; } } |