| Index: src/x64/full-codegen-x64.cc
|
| diff --git a/src/x64/full-codegen-x64.cc b/src/x64/full-codegen-x64.cc
|
| index db49e75d495fc5a43769dd169feef16ec9d469f9..3a93117e385542c259016c087242a171bed3c289 100644
|
| --- a/src/x64/full-codegen-x64.cc
|
| +++ b/src/x64/full-codegen-x64.cc
|
| @@ -2736,8 +2736,6 @@ void FullCodeGenerator::VisitProperty(Property* expr) {
|
| __ Push(result_register());
|
| EmitNamedSuperPropertyLoad(expr);
|
| }
|
| - PrepareForBailoutForId(expr->LoadId(), TOS_REG);
|
| - context()->Plug(rax);
|
| } else {
|
| if (!expr->IsSuperAccess()) {
|
| VisitForStackValue(expr->obj());
|
| @@ -2752,8 +2750,9 @@ void FullCodeGenerator::VisitProperty(Property* expr) {
|
| VisitForStackValue(expr->key());
|
| EmitKeyedSuperPropertyLoad(expr);
|
| }
|
| - context()->Plug(rax);
|
| }
|
| + PrepareForBailoutForId(expr->LoadId(), TOS_REG);
|
| + context()->Plug(rax);
|
| }
|
|
|
|
|
|
|