Index: src/crankshaft/x87/lithium-x87.cc |
diff --git a/src/crankshaft/x87/lithium-x87.cc b/src/crankshaft/x87/lithium-x87.cc |
index a319c0c7186e056ac9e57adb613ba992a8bc9107..a8061f338b4bc317d90c92bf370de6045fd324b9 100644 |
--- a/src/crankshaft/x87/lithium-x87.cc |
+++ b/src/crankshaft/x87/lithium-x87.cc |
@@ -2003,15 +2003,6 @@ LInstruction* LChunkBuilder::DoConstant(HConstant* instr) { |
} |
-LInstruction* LChunkBuilder::DoLoadGlobalGeneric(HLoadGlobalGeneric* instr) { |
- LOperand* context = UseFixed(instr->context(), esi); |
- LOperand* vector = FixedTemp(LoadWithVectorDescriptor::VectorRegister()); |
- |
- LLoadGlobalGeneric* result = new (zone()) LLoadGlobalGeneric(context, vector); |
- return MarkAsCall(DefineFixed(result, eax), instr); |
-} |
- |
- |
LInstruction* LChunkBuilder::DoLoadContextSlot(HLoadContextSlot* instr) { |
LOperand* context = UseRegisterAtStart(instr->value()); |
LInstruction* result = |