| Index: src/full-codegen/mips64/full-codegen-mips64.cc
|
| diff --git a/src/full-codegen/mips64/full-codegen-mips64.cc b/src/full-codegen/mips64/full-codegen-mips64.cc
|
| index 081c7d2d34afbc346e9f6b2ba59e6e10cbbdb34b..69948f3160ccf5875a8de76e146af7eee10e94fa 100644
|
| --- a/src/full-codegen/mips64/full-codegen-mips64.cc
|
| +++ b/src/full-codegen/mips64/full-codegen-mips64.cc
|
| @@ -3069,7 +3069,7 @@ void FullCodeGenerator::VisitUnaryOperation(UnaryOperation* expr) {
|
| Variable* var = proxy->var();
|
| // Delete of an unqualified identifier is disallowed in strict mode but
|
| // "delete this" is allowed.
|
| - bool is_this = var->HasThisName(isolate());
|
| + bool is_this = var->is_this();
|
| DCHECK(is_sloppy(language_mode()) || is_this);
|
| if (var->IsUnallocatedOrGlobalSlot()) {
|
| __ LoadGlobalObject(a2);
|
|
|