| Index: src/arm/full-codegen-arm.cc
|
| diff --git a/src/arm/full-codegen-arm.cc b/src/arm/full-codegen-arm.cc
|
| index 6368092e52d6733046a17d667838e4d09f5a3ac6..b6cb7ad55fbc5df21827d4e5be6c061f5ee2a000 100644
|
| --- a/src/arm/full-codegen-arm.cc
|
| +++ b/src/arm/full-codegen-arm.cc
|
| @@ -1128,7 +1128,7 @@ void FullCodeGenerator::EmitLoadGlobalCheckExtensions(Variable* var,
|
| Scope* s = scope();
|
| while (s != NULL) {
|
| if (s->num_heap_slots() > 0) {
|
| - if (s->calls_eval()) {
|
| + if (s->calls_non_strict_eval()) {
|
| // Check that extension is NULL.
|
| __ ldr(temp, ContextOperand(current, Context::EXTENSION_INDEX));
|
| __ tst(temp, temp);
|
| @@ -1185,7 +1185,7 @@ MemOperand FullCodeGenerator::ContextSlotOperandCheckExtensions(Variable* var,
|
|
|
| for (Scope* s = scope(); s != var->scope(); s = s->outer_scope()) {
|
| if (s->num_heap_slots() > 0) {
|
| - if (s->calls_eval()) {
|
| + if (s->calls_non_strict_eval()) {
|
| // Check that extension is NULL.
|
| __ ldr(temp, ContextOperand(context, Context::EXTENSION_INDEX));
|
| __ tst(temp, temp);
|
|
|