| Index: src/ia32/lithium-ia32.cc
|
| ===================================================================
|
| --- src/ia32/lithium-ia32.cc (revision 9445)
|
| +++ src/ia32/lithium-ia32.cc (working copy)
|
| @@ -1779,7 +1779,7 @@
|
|
|
| LInstruction* LChunkBuilder::DoLoadGlobalCell(HLoadGlobalCell* instr) {
|
| LLoadGlobalCell* result = new LLoadGlobalCell;
|
| - return instr->check_hole_value()
|
| + return instr->RequiresHoleCheck()
|
| ? AssignEnvironment(DefineAsRegister(result))
|
| : DefineAsRegister(result);
|
| }
|
| @@ -1798,7 +1798,7 @@
|
| new LStoreGlobalCell(UseTempRegister(instr->value()),
|
| TempRegister(),
|
| TempRegister());
|
| - return instr->check_hole_value() ? AssignEnvironment(result) : result;
|
| + return instr->RequiresHoleCheck() ? AssignEnvironment(result) : result;
|
| }
|
|
|
|
|
|
|