Index: src/crankshaft/x64/lithium-x64.cc |
diff --git a/src/crankshaft/x64/lithium-x64.cc b/src/crankshaft/x64/lithium-x64.cc |
index 671b83b727a881008bd7d457890cda070bc6b474..7dd47330b1d7b5761d62f93f88b948beb97e75f5 100644 |
--- a/src/crankshaft/x64/lithium-x64.cc |
+++ b/src/crankshaft/x64/lithium-x64.cc |
@@ -2118,19 +2118,6 @@ LInstruction* LChunkBuilder::DoLoadKeyed(HLoadKeyed* instr) { |
} |
-LInstruction* LChunkBuilder::DoLoadKeyedGeneric(HLoadKeyedGeneric* instr) { |
- LOperand* context = UseFixed(instr->context(), rsi); |
- LOperand* object = |
- UseFixed(instr->object(), LoadDescriptor::ReceiverRegister()); |
- LOperand* key = UseFixed(instr->key(), LoadDescriptor::NameRegister()); |
- LOperand* vector = FixedTemp(LoadWithVectorDescriptor::VectorRegister()); |
- |
- LLoadKeyedGeneric* result = |
- new(zone()) LLoadKeyedGeneric(context, object, key, vector); |
- return MarkAsCall(DefineFixed(result, rax), instr); |
-} |
- |
- |
LInstruction* LChunkBuilder::DoStoreKeyed(HStoreKeyed* instr) { |
ElementsKind elements_kind = instr->elements_kind(); |