| Index: src/full-codegen/s390/full-codegen-s390.cc
|
| diff --git a/src/full-codegen/s390/full-codegen-s390.cc b/src/full-codegen/s390/full-codegen-s390.cc
|
| index 7326829eb8e2d97d8e02a667851b104a7bd3326f..24e502481d13a29c4a536e2277d2fb696a1acd03 100644
|
| --- a/src/full-codegen/s390/full-codegen-s390.cc
|
| +++ b/src/full-codegen/s390/full-codegen-s390.cc
|
| @@ -937,8 +937,10 @@ void FullCodeGenerator::VisitForInStatement(ForInStatement* stmt) {
|
| __ CompareRoot(r2, Heap::kUndefinedValueRootIndex);
|
| __ beq(&exit);
|
| __ bind(&convert);
|
| + __ Push(cp);
|
| ToObjectStub stub(isolate());
|
| __ CallStub(&stub);
|
| + __ Pop(cp);
|
| __ bind(&done_convert);
|
| PrepareForBailoutForId(stmt->ToObjectId(), BailoutState::TOS_REGISTER);
|
| __ push(r2);
|
|
|