Index: src/ia32/full-codegen-ia32.cc |
diff --git a/src/ia32/full-codegen-ia32.cc b/src/ia32/full-codegen-ia32.cc |
index af5fe45e25242eb7469f1bb99ebbea752c4a04c4..5a161e9763928ab2f49cfc16670dd3b2e244a94e 100644 |
--- a/src/ia32/full-codegen-ia32.cc |
+++ b/src/ia32/full-codegen-ia32.cc |
@@ -2736,8 +2736,6 @@ void FullCodeGenerator::VisitProperty(Property* expr) { |
__ push(result_register()); |
EmitNamedSuperPropertyLoad(expr); |
} |
- PrepareForBailoutForId(expr->LoadId(), TOS_REG); |
- context()->Plug(eax); |
} else { |
if (!expr->IsSuperAccess()) { |
VisitForStackValue(expr->obj()); |
@@ -2752,8 +2750,9 @@ void FullCodeGenerator::VisitProperty(Property* expr) { |
VisitForStackValue(expr->key()); |
EmitKeyedSuperPropertyLoad(expr); |
} |
- context()->Plug(eax); |
} |
+ PrepareForBailoutForId(expr->LoadId(), TOS_REG); |
+ context()->Plug(eax); |
} |