Index: src/mips/lithium-mips.cc |
diff --git a/src/mips/lithium-mips.cc b/src/mips/lithium-mips.cc |
index 1ff8915f515bbe083112adf622ddf926b4c448f2..ccdbcdb5db37017d1bab9f593e62fa1182e8d940 100644 |
--- a/src/mips/lithium-mips.cc |
+++ b/src/mips/lithium-mips.cc |
@@ -2492,7 +2492,9 @@ LInstruction* LChunkBuilder::DoCheckMapValue(HCheckMapValue* instr) { |
LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { |
LOperand* object = UseRegister(instr->object()); |
LOperand* index = UseRegister(instr->index()); |
- return DefineAsRegister(new(zone()) LLoadFieldByIndex(object, index)); |
+ LLoadFieldByIndex* load = new(zone()) LLoadFieldByIndex(object, index); |
+ LInstruction* result = DefineSameAsFirst(load); |
+ return AssignPointerMap(result); |
} |