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