| Index: src/ia32/full-codegen-ia32.cc
|
| diff --git a/src/ia32/full-codegen-ia32.cc b/src/ia32/full-codegen-ia32.cc
|
| index 368a8eeb0b56b1d42c4428cfa94d9d2f70272493..329f13d67b32e28f00894462812e4e0835025f47 100644
|
| --- a/src/ia32/full-codegen-ia32.cc
|
| +++ b/src/ia32/full-codegen-ia32.cc
|
| @@ -1009,7 +1009,6 @@ void FullCodeGenerator::VisitForInStatement(ForInStatement* stmt) {
|
| __ push(eax); // Map.
|
| __ push(edx); // Enumeration cache.
|
| __ mov(eax, FieldOperand(edx, FixedArray::kLengthOffset));
|
| - __ SmiTag(eax);
|
| __ push(eax); // Enumeration cache length (as smi).
|
| __ push(Immediate(Smi::FromInt(0))); // Initial index.
|
| __ jmp(&loop);
|
| @@ -1019,7 +1018,6 @@ void FullCodeGenerator::VisitForInStatement(ForInStatement* stmt) {
|
| __ push(Immediate(Smi::FromInt(0))); // Map (0) - force slow check.
|
| __ push(eax);
|
| __ mov(eax, FieldOperand(eax, FixedArray::kLengthOffset));
|
| - __ SmiTag(eax);
|
| __ push(eax); // Fixed array length (as smi).
|
| __ push(Immediate(Smi::FromInt(0))); // Initial index.
|
|
|
|
|