| Index: src/full-codegen/ia32/full-codegen-ia32.cc
|
| diff --git a/src/full-codegen/ia32/full-codegen-ia32.cc b/src/full-codegen/ia32/full-codegen-ia32.cc
|
| index 1620905a77c60732acd35558cf2ea3769e3c2bd0..44f72e49493de32f883cf557c7b41372d89e535e 100644
|
| --- a/src/full-codegen/ia32/full-codegen-ia32.cc
|
| +++ b/src/full-codegen/ia32/full-codegen-ia32.cc
|
| @@ -945,8 +945,10 @@ void FullCodeGenerator::VisitForInStatement(ForInStatement* stmt) {
|
| __ cmp(eax, isolate()->factory()->null_value());
|
| __ j(equal, &exit);
|
| __ bind(&convert);
|
| + __ Push(esi);
|
| ToObjectStub stub(isolate());
|
| __ CallStub(&stub);
|
| + __ Pop(esi);
|
| __ bind(&done_convert);
|
| PrepareForBailoutForId(stmt->ToObjectId(), BailoutState::TOS_REGISTER);
|
| __ push(eax);
|
|
|