Index: src/crankshaft/arm64/lithium-arm64.cc |
diff --git a/src/crankshaft/arm64/lithium-arm64.cc b/src/crankshaft/arm64/lithium-arm64.cc |
index 32dd971b9bb9f827675a5defe0264a86a3ce1c01..9a0a7c4730187a8e6670b1aaa498b4de42e1d5b5 100644 |
--- a/src/crankshaft/arm64/lithium-arm64.cc |
+++ b/src/crankshaft/arm64/lithium-arm64.cc |
@@ -1553,12 +1553,9 @@ LInstruction* LChunkBuilder::DoLoadFunctionPrototype( |
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, x0), instr); |
} |