Index: src/mips64/full-codegen-mips64.cc |
diff --git a/src/mips64/full-codegen-mips64.cc b/src/mips64/full-codegen-mips64.cc |
index 00791c0c9df1540106478370e91364c7be870759..9e79bcbb56f6caaeff157808a5905a1f6eb979f1 100644 |
--- a/src/mips64/full-codegen-mips64.cc |
+++ b/src/mips64/full-codegen-mips64.cc |
@@ -2811,8 +2811,6 @@ void FullCodeGenerator::VisitProperty(Property* expr) { |
__ Push(result_register()); |
EmitNamedSuperPropertyLoad(expr); |
} |
- PrepareForBailoutForId(expr->LoadId(), TOS_REG); |
- context()->Plug(v0); |
} else { |
if (!expr->IsSuperAccess()) { |
VisitForStackValue(expr->obj()); |
@@ -2827,8 +2825,9 @@ void FullCodeGenerator::VisitProperty(Property* expr) { |
VisitForStackValue(expr->key()); |
EmitKeyedSuperPropertyLoad(expr); |
} |
- context()->Plug(v0); |
} |
+ PrepareForBailoutForId(expr->LoadId(), TOS_REG); |
+ context()->Plug(v0); |
} |