Index: src/x87/lithium-x87.cc |
diff --git a/src/x87/lithium-x87.cc b/src/x87/lithium-x87.cc |
index eeccd1bcff10f2b4c417d10d275e7761c8482345..009d47029ce009ef12c08ed4cb97f0ec90e9780e 100644 |
--- a/src/x87/lithium-x87.cc |
+++ b/src/x87/lithium-x87.cc |
@@ -2130,14 +2130,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 = |
@@ -2153,13 +2145,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 = |