Index: src/crankshaft/x64/lithium-x64.cc |
diff --git a/src/crankshaft/x64/lithium-x64.cc b/src/crankshaft/x64/lithium-x64.cc |
index 3302b69de965e1104a13cf34e6fa12978e7c5513..01b9918d3181496689196ba17654a52f22872fa2 100644 |
--- a/src/crankshaft/x64/lithium-x64.cc |
+++ b/src/crankshaft/x64/lithium-x64.cc |
@@ -2003,12 +2003,9 @@ LInstruction* LChunkBuilder::DoConstant(HConstant* instr) { |
LInstruction* LChunkBuilder::DoLoadGlobalGeneric(HLoadGlobalGeneric* instr) { |
LOperand* context = UseFixed(instr->context(), rsi); |
- 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, rax), instr); |
} |