Index: src/ppc/full-codegen-ppc.cc |
diff --git a/src/ppc/full-codegen-ppc.cc b/src/ppc/full-codegen-ppc.cc |
index e926d6ee27c88102aebac8bbdcb14a1f3f6221be..5b89437369dc7abb4ebc3ef00d2abb2f4309f9b6 100644 |
--- a/src/ppc/full-codegen-ppc.cc |
+++ b/src/ppc/full-codegen-ppc.cc |
@@ -2800,8 +2800,6 @@ void FullCodeGenerator::VisitProperty(Property* expr) { |
__ Push(result_register()); |
EmitNamedSuperPropertyLoad(expr); |
} |
- PrepareForBailoutForId(expr->LoadId(), TOS_REG); |
- context()->Plug(r3); |
} else { |
if (!expr->IsSuperAccess()) { |
VisitForStackValue(expr->obj()); |
@@ -2816,8 +2814,9 @@ void FullCodeGenerator::VisitProperty(Property* expr) { |
VisitForStackValue(expr->key()); |
EmitKeyedSuperPropertyLoad(expr); |
} |
- context()->Plug(r3); |
} |
+ PrepareForBailoutForId(expr->LoadId(), TOS_REG); |
+ context()->Plug(r3); |
} |