Index: src/crankshaft/arm64/lithium-arm64.cc |
diff --git a/src/crankshaft/arm64/lithium-arm64.cc b/src/crankshaft/arm64/lithium-arm64.cc |
index e25dce64a43d3f654bdc73e0be6e7b537fb9b2eb..b281681228aa2ba88edfcddb99dc1c310665c2d7 100644 |
--- a/src/crankshaft/arm64/lithium-arm64.cc |
+++ b/src/crankshaft/arm64/lithium-arm64.cc |
@@ -1601,20 +1601,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), |
- x0); |
- return MarkAsCall(result, instr); |
-} |
- |
- |
LInstruction* LChunkBuilder::DoLoadNamedField(HLoadNamedField* instr) { |
LOperand* object = UseRegisterAtStart(instr->object()); |
return DefineAsRegister(new(zone()) LLoadNamedField(object)); |