Index: src/full-codegen/mips/full-codegen-mips.cc |
diff --git a/src/full-codegen/mips/full-codegen-mips.cc b/src/full-codegen/mips/full-codegen-mips.cc |
index e1daa208fb79c1c438f0395f2ea2ad10376783ce..c846c55b31e7807a6dc550e69600fb72b0a28f68 100644 |
--- a/src/full-codegen/mips/full-codegen-mips.cc |
+++ b/src/full-codegen/mips/full-codegen-mips.cc |
@@ -999,8 +999,10 @@ void FullCodeGenerator::VisitForInStatement(ForInStatement* stmt) { |
__ LoadRoot(at, Heap::kUndefinedValueRootIndex); // In delay slot. |
__ Branch(&exit, eq, a0, Operand(at)); |
__ bind(&convert); |
+ __ Push(cp); |
ToObjectStub stub(isolate()); |
__ CallStub(&stub); |
+ __ Pop(cp); |
__ mov(a0, v0); |
__ bind(&done_convert); |
PrepareForBailoutForId(stmt->ToObjectId(), BailoutState::TOS_REGISTER); |