| Index: src/ia32/lithium-ia32.cc
|
| diff --git a/src/ia32/lithium-ia32.cc b/src/ia32/lithium-ia32.cc
|
| index 3f3516d3a0f51dfd796ce54718c56fe43dfdca01..b37589397fc94b4d9853fd7a6472feedb487fa9d 100644
|
| --- a/src/ia32/lithium-ia32.cc
|
| +++ b/src/ia32/lithium-ia32.cc
|
| @@ -2072,16 +2072,6 @@ LInstruction* LChunkBuilder::DoStoreGlobalCell(HStoreGlobalCell* instr) {
|
| }
|
|
|
|
|
| -LInstruction* LChunkBuilder::DoStoreGlobalGeneric(HStoreGlobalGeneric* instr) {
|
| - LOperand* context = UseFixed(instr->context(), esi);
|
| - LOperand* global_object = UseFixed(instr->global_object(), edx);
|
| - LOperand* value = UseFixed(instr->value(), eax);
|
| - LStoreGlobalGeneric* result =
|
| - new(zone()) LStoreGlobalGeneric(context, global_object, value);
|
| - return MarkAsCall(result, instr);
|
| -}
|
| -
|
| -
|
| LInstruction* LChunkBuilder::DoLoadContextSlot(HLoadContextSlot* instr) {
|
| LOperand* context = UseRegisterAtStart(instr->value());
|
| LInstruction* result =
|
|
|