Index: src/arm/full-codegen-arm.cc |
diff --git a/src/arm/full-codegen-arm.cc b/src/arm/full-codegen-arm.cc |
index ad0c8174f1f41cccc4220c4e266ef449427eb7c9..6139806f909405a612bcfb68cc6f267a496c40a4 100644 |
--- a/src/arm/full-codegen-arm.cc |
+++ b/src/arm/full-codegen-arm.cc |
@@ -2827,8 +2827,6 @@ void FullCodeGenerator::VisitProperty(Property* expr) { |
__ Push(result_register()); |
EmitNamedSuperPropertyLoad(expr); |
} |
- PrepareForBailoutForId(expr->LoadId(), TOS_REG); |
- context()->Plug(r0); |
} else { |
if (!expr->IsSuperAccess()) { |
VisitForStackValue(expr->obj()); |
@@ -2843,8 +2841,9 @@ void FullCodeGenerator::VisitProperty(Property* expr) { |
VisitForStackValue(expr->key()); |
EmitKeyedSuperPropertyLoad(expr); |
} |
- context()->Plug(r0); |
} |
+ PrepareForBailoutForId(expr->LoadId(), TOS_REG); |
+ context()->Plug(r0); |
} |