Index: src/crankshaft/ia32/lithium-ia32.cc |
diff --git a/src/crankshaft/ia32/lithium-ia32.cc b/src/crankshaft/ia32/lithium-ia32.cc |
index 60024c26a94767db95df308ebeba483ea1ec882d..501ff47ab7631fa9a8cfb16a4114ca8f864f8e58 100644 |
--- a/src/crankshaft/ia32/lithium-ia32.cc |
+++ b/src/crankshaft/ia32/lithium-ia32.cc |
@@ -2025,12 +2025,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); |
} |