| Index: src/x87/full-codegen-x87.cc
|
| diff --git a/src/x87/full-codegen-x87.cc b/src/x87/full-codegen-x87.cc
|
| index 96809744fcecf8a40d13b12716269d72bff2e825..8b8ef5205d239d0eb1565057dd3207adb656d56b 100644
|
| --- a/src/x87/full-codegen-x87.cc
|
| +++ b/src/x87/full-codegen-x87.cc
|
| @@ -2723,8 +2723,6 @@ void FullCodeGenerator::VisitProperty(Property* expr) {
|
| __ push(result_register());
|
| EmitNamedSuperPropertyLoad(expr);
|
| }
|
| - PrepareForBailoutForId(expr->LoadId(), TOS_REG);
|
| - context()->Plug(eax);
|
| } else {
|
| if (!expr->IsSuperAccess()) {
|
| VisitForStackValue(expr->obj());
|
| @@ -2739,8 +2737,9 @@ void FullCodeGenerator::VisitProperty(Property* expr) {
|
| VisitForStackValue(expr->key());
|
| EmitKeyedSuperPropertyLoad(expr);
|
| }
|
| - context()->Plug(eax);
|
| }
|
| + PrepareForBailoutForId(expr->LoadId(), TOS_REG);
|
| + context()->Plug(eax);
|
| }
|
|
|
|
|
|
|