Index: src/crankshaft/arm/lithium-arm.cc |
diff --git a/src/crankshaft/arm/lithium-arm.cc b/src/crankshaft/arm/lithium-arm.cc |
index 8c4b7356c974815e137bb8e17805c5037a8be33c..27bc580aa5b91b83a59b58f38a78cd77607a51e8 100644 |
--- a/src/crankshaft/arm/lithium-arm.cc |
+++ b/src/crankshaft/arm/lithium-arm.cc |
@@ -1999,15 +1999,6 @@ LInstruction* LChunkBuilder::DoConstant(HConstant* instr) { |
} |
-LInstruction* LChunkBuilder::DoLoadGlobalGeneric(HLoadGlobalGeneric* instr) { |
- LOperand* context = UseFixed(instr->context(), cp); |
- LOperand* vector = FixedTemp(LoadWithVectorDescriptor::VectorRegister()); |
- |
- LLoadGlobalGeneric* result = new (zone()) LLoadGlobalGeneric(context, vector); |
- return MarkAsCall(DefineFixed(result, r0), instr); |
-} |
- |
- |
LInstruction* LChunkBuilder::DoLoadContextSlot(HLoadContextSlot* instr) { |
LOperand* context = UseRegisterAtStart(instr->value()); |
LInstruction* result = |