Index: src/ia32/lithium-ia32.cc |
diff --git a/src/ia32/lithium-ia32.cc b/src/ia32/lithium-ia32.cc |
index 384a21c6980dc5fce2385de50b2afeb47adb12f5..8fa6dbdcaed689256948f7c21e6a4785100c082d 100644 |
--- a/src/ia32/lithium-ia32.cc |
+++ b/src/ia32/lithium-ia32.cc |
@@ -2702,9 +2702,7 @@ LInstruction* LChunkBuilder::DoCheckMapValue(HCheckMapValue* instr) { |
LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { |
LOperand* object = UseRegister(instr->object()); |
LOperand* index = UseTempRegister(instr->index()); |
- LLoadFieldByIndex* load = new(zone()) LLoadFieldByIndex(object, index); |
- LInstruction* result = DefineSameAsFirst(load); |
- return AssignPointerMap(result); |
+ return DefineSameAsFirst(new(zone()) LLoadFieldByIndex(object, index)); |
} |