| Index: src/arm64/full-codegen-arm64.cc
|
| diff --git a/src/arm64/full-codegen-arm64.cc b/src/arm64/full-codegen-arm64.cc
|
| index a013543998fda0a136e3eef251bd81b2648a33a0..491e9000d39fbd2ce62bddffb3971385f81ab87b 100644
|
| --- a/src/arm64/full-codegen-arm64.cc
|
| +++ b/src/arm64/full-codegen-arm64.cc
|
| @@ -2518,8 +2518,6 @@ void FullCodeGenerator::VisitProperty(Property* expr) {
|
| __ Push(result_register());
|
| EmitNamedSuperPropertyLoad(expr);
|
| }
|
| - PrepareForBailoutForId(expr->LoadId(), TOS_REG);
|
| - context()->Plug(x0);
|
| } else {
|
| if (!expr->IsSuperAccess()) {
|
| VisitForStackValue(expr->obj());
|
| @@ -2534,8 +2532,9 @@ void FullCodeGenerator::VisitProperty(Property* expr) {
|
| VisitForStackValue(expr->key());
|
| EmitKeyedSuperPropertyLoad(expr);
|
| }
|
| - context()->Plug(x0);
|
| }
|
| + PrepareForBailoutForId(expr->LoadId(), TOS_REG);
|
| + context()->Plug(x0);
|
| }
|
|
|
|
|
|
|