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