Index: src/ia32/lithium-ia32.cc |
diff --git a/src/ia32/lithium-ia32.cc b/src/ia32/lithium-ia32.cc |
index 76eaec570cba39f5dda25dd90b52d6f081bacafd..29936b2db8e621116ca6399fbfb66a3e0a802e79 100644 |
--- a/src/ia32/lithium-ia32.cc |
+++ b/src/ia32/lithium-ia32.cc |
@@ -2016,7 +2016,6 @@ LInstruction* LChunkBuilder::DoStoreKeyedSpecializedArrayElement( |
LOperand* external_pointer = UseRegister(instr->external_pointer()); |
LOperand* key = UseRegisterOrConstant(instr->key()); |
- LOperand* temp = NULL; |
LOperand* val = NULL; |
if (array_type == kExternalByteArray || |
array_type == kExternalUnsignedByteArray) { |
@@ -2028,8 +2027,7 @@ LInstruction* LChunkBuilder::DoStoreKeyedSpecializedArrayElement( |
return new LStoreKeyedSpecializedArrayElement(external_pointer, |
key, |
- val, |
- temp); |
+ val); |
} |