Index: src/crankshaft/x87/lithium-x87.cc |
diff --git a/src/crankshaft/x87/lithium-x87.cc b/src/crankshaft/x87/lithium-x87.cc |
index 06560512777740b88cd2bd99a80523c7a651bc16..2a789e318fb8572dc333c3fc0d12a956442ca389 100644 |
--- a/src/crankshaft/x87/lithium-x87.cc |
+++ b/src/crankshaft/x87/lithium-x87.cc |
@@ -2005,12 +2005,9 @@ LInstruction* LChunkBuilder::DoConstant(HConstant* instr) { |
LInstruction* LChunkBuilder::DoLoadGlobalGeneric(HLoadGlobalGeneric* instr) { |
LOperand* context = UseFixed(instr->context(), esi); |
- 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, eax), instr); |
} |