Index: src/arm/lithium-arm.cc |
diff --git a/src/arm/lithium-arm.cc b/src/arm/lithium-arm.cc |
index 13ededb51de588d99d7b20cc5df60ef845680dfa..5a425a61910623a105c08bdd10203a5fff9963cc 100644 |
--- a/src/arm/lithium-arm.cc |
+++ b/src/arm/lithium-arm.cc |
@@ -2142,4 +2142,12 @@ LInstruction* LChunkBuilder::DoLeaveInlined(HLeaveInlined* instr) { |
} |
+LInstruction* LChunkBuilder::DoIn(HIn* instr) { |
+ LOperand* key = UseRegisterAtStart(instr->key()); |
+ LOperand* object = UseRegisterAtStart(instr->object()); |
+ LIn* result = new LIn(key, object); |
+ return MarkAsCall(DefineFixed(result, r0), instr); |
+} |
+ |
+ |
} } // namespace v8::internal |