Index: src/crankshaft/mips/lithium-mips.cc |
diff --git a/src/crankshaft/mips/lithium-mips.cc b/src/crankshaft/mips/lithium-mips.cc |
index aacb942d6d5e77733b2375d532c799266684e248..0f3aa592cb687e9946a019d2a9b9263e742a739b 100644 |
--- a/src/crankshaft/mips/lithium-mips.cc |
+++ b/src/crankshaft/mips/lithium-mips.cc |
@@ -2040,20 +2040,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), |
- v0); |
- return MarkAsCall(result, instr); |
-} |
- |
- |
LInstruction* LChunkBuilder::DoStoreKeyed(HStoreKeyed* instr) { |
if (!instr->is_fixed_typed_array()) { |
DCHECK(instr->elements()->representation().IsTagged()); |