Index: src/crankshaft/mips/lithium-mips.cc |
diff --git a/src/crankshaft/mips/lithium-mips.cc b/src/crankshaft/mips/lithium-mips.cc |
index a3f73b0e501eda042a096f7f8660fd4432ed696e..e7066209c4de6289c02adc083b2ce03e1c926f70 100644 |
--- a/src/crankshaft/mips/lithium-mips.cc |
+++ b/src/crankshaft/mips/lithium-mips.cc |
@@ -1965,11 +1965,9 @@ LInstruction* LChunkBuilder::DoConstant(HConstant* instr) { |
LInstruction* LChunkBuilder::DoLoadGlobalGeneric(HLoadGlobalGeneric* instr) { |
LOperand* context = UseFixed(instr->context(), cp); |
- LOperand* global_object = |
- UseFixed(instr->global_object(), LoadDescriptor::ReceiverRegister()); |
LOperand* vector = FixedTemp(LoadWithVectorDescriptor::VectorRegister()); |
- LLoadGlobalGeneric* result = |
- new(zone()) LLoadGlobalGeneric(context, global_object, vector); |
+ |
+ LLoadGlobalGeneric* result = new (zone()) LLoadGlobalGeneric(context, vector); |
return MarkAsCall(DefineFixed(result, v0), instr); |
} |