| Index: src/mips/lithium-mips.cc
|
| diff --git a/src/mips/lithium-mips.cc b/src/mips/lithium-mips.cc
|
| index 1298b4cee6014d7bcafcac9f779d58dc2a793253..03e1e34f8966cfd08be20b2d51ff9ef7327dbb7c 100644
|
| --- a/src/mips/lithium-mips.cc
|
| +++ b/src/mips/lithium-mips.cc
|
| @@ -1962,16 +1962,6 @@ LInstruction* LChunkBuilder::DoStoreGlobalCell(HStoreGlobalCell* instr) {
|
| }
|
|
|
|
|
| -LInstruction* LChunkBuilder::DoStoreGlobalGeneric(HStoreGlobalGeneric* instr) {
|
| - LOperand* context = UseFixed(instr->context(), cp);
|
| - LOperand* global_object = UseFixed(instr->global_object(), a1);
|
| - LOperand* value = UseFixed(instr->value(), a0);
|
| - 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 =
|
|
|