Index: src/crankshaft/s390/lithium-s390.cc |
diff --git a/src/crankshaft/s390/lithium-s390.cc b/src/crankshaft/s390/lithium-s390.cc |
index 12e95b65dbeb415a694025f66cf2d260dea17ed9..be0bbe5af8f0e464e5fab3c3d6d39166ed06be93 100644 |
--- a/src/crankshaft/s390/lithium-s390.cc |
+++ b/src/crankshaft/s390/lithium-s390.cc |
@@ -1890,18 +1890,6 @@ LInstruction* LChunkBuilder::DoLoadKeyed(HLoadKeyed* instr) { |
return result; |
} |
-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), r2); |
- return MarkAsCall(result, instr); |
-} |
- |
LInstruction* LChunkBuilder::DoStoreKeyed(HStoreKeyed* instr) { |
if (!instr->is_fixed_typed_array()) { |
DCHECK(instr->elements()->representation().IsTagged()); |