Index: src/mips/full-codegen-mips.cc |
diff --git a/src/mips/full-codegen-mips.cc b/src/mips/full-codegen-mips.cc |
index dc85538c3e97f950acad1cea85da98af8383bd28..bd408d9b0602d5edacc78b0e1f2ecb8fc8eef739 100644 |
--- a/src/mips/full-codegen-mips.cc |
+++ b/src/mips/full-codegen-mips.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); |
} |