| Index: src/ia32/lithium-ia32.cc
|
| ===================================================================
|
| --- src/ia32/lithium-ia32.cc (revision 6349)
|
| +++ src/ia32/lithium-ia32.cc (working copy)
|
| @@ -1166,8 +1166,8 @@
|
| LInstruction* LChunkBuilder::DoCallKeyed(HCallKeyed* instr) {
|
| ASSERT(instr->key()->representation().IsTagged());
|
| argument_count_ -= instr->argument_count();
|
| - LOperand* temp = UseFixed(instr->key(), ecx);
|
| - return MarkAsCall(DefineFixed(new LCallKeyed(temp), eax), instr);
|
| + LOperand* key = UseFixed(instr->key(), ecx);
|
| + return MarkAsCall(DefineFixed(new LCallKeyed(key), eax), instr);
|
| }
|
|
|
|
|
|
|