Index: src/crankshaft/arm/lithium-arm.cc |
diff --git a/src/crankshaft/arm/lithium-arm.cc b/src/crankshaft/arm/lithium-arm.cc |
index 908adf9c704f894908de4f42cf723c5296b7552a..9aa946653258d806a8b10b5c89cc5da4436900f9 100644 |
--- a/src/crankshaft/arm/lithium-arm.cc |
+++ b/src/crankshaft/arm/lithium-arm.cc |
@@ -2093,20 +2093,6 @@ LInstruction* LChunkBuilder::DoLoadKeyed(HLoadKeyed* instr) { |
} |
-LInstruction* LChunkBuilder::DoLoadKeyedGeneric(HLoadKeyedGeneric* instr) { |
- LOperand* context = UseFixed(instr->context(), cp); |
- LOperand* object = |
- UseFixed(instr->object(), LoadDescriptor::ReceiverRegister()); |
- LOperand* key = UseFixed(instr->key(), LoadDescriptor::NameRegister()); |
- LOperand* vector = FixedTemp(LoadWithVectorDescriptor::VectorRegister()); |
- |
- LInstruction* result = |
- DefineFixed(new(zone()) LLoadKeyedGeneric(context, object, key, vector), |
- r0); |
- return MarkAsCall(result, instr); |
-} |
- |
- |
LInstruction* LChunkBuilder::DoStoreKeyed(HStoreKeyed* instr) { |
if (!instr->is_fixed_typed_array()) { |
DCHECK(instr->elements()->representation().IsTagged()); |