| Index: src/ia32/lithium-ia32.cc | 
| diff --git a/src/ia32/lithium-ia32.cc b/src/ia32/lithium-ia32.cc | 
| index 1c8d075dcb8713e8ff40ccc3cf3de3bf8b8d6d77..0bda914f6d06593139dbed038d357922eacbba1f 100644 | 
| --- a/src/ia32/lithium-ia32.cc | 
| +++ b/src/ia32/lithium-ia32.cc | 
| @@ -2132,14 +2132,6 @@ LInstruction* LChunkBuilder::DoConstant(HConstant* instr) { | 
| } | 
|  | 
|  | 
| -LInstruction* LChunkBuilder::DoLoadGlobalCell(HLoadGlobalCell* instr) { | 
| -  LLoadGlobalCell* result = new(zone()) LLoadGlobalCell; | 
| -  return instr->RequiresHoleCheck() | 
| -      ? AssignEnvironment(DefineAsRegister(result)) | 
| -      : DefineAsRegister(result); | 
| -} | 
| - | 
| - | 
| LInstruction* LChunkBuilder::DoLoadGlobalGeneric(HLoadGlobalGeneric* instr) { | 
| LOperand* context = UseFixed(instr->context(), esi); | 
| LOperand* global_object = | 
| @@ -2155,13 +2147,6 @@ LInstruction* LChunkBuilder::DoLoadGlobalGeneric(HLoadGlobalGeneric* instr) { | 
| } | 
|  | 
|  | 
| -LInstruction* LChunkBuilder::DoStoreGlobalCell(HStoreGlobalCell* instr) { | 
| -  LStoreGlobalCell* result = | 
| -      new(zone()) LStoreGlobalCell(UseRegister(instr->value())); | 
| -  return instr->RequiresHoleCheck() ? AssignEnvironment(result) : result; | 
| -} | 
| - | 
| - | 
| LInstruction* LChunkBuilder::DoLoadContextSlot(HLoadContextSlot* instr) { | 
| LOperand* context = UseRegisterAtStart(instr->value()); | 
| LInstruction* result = | 
|  |