Index: src/crankshaft/ia32/lithium-ia32.cc |
diff --git a/src/crankshaft/ia32/lithium-ia32.cc b/src/crankshaft/ia32/lithium-ia32.cc |
index 97145d7a7cc89f6f87fb35006525622b3601e7a6..11d368a89683b80291a38acc2c234c575204651a 100644 |
--- a/src/crankshaft/ia32/lithium-ia32.cc |
+++ b/src/crankshaft/ia32/lithium-ia32.cc |
@@ -2104,18 +2104,6 @@ LInstruction* LChunkBuilder::DoLoadKeyed(HLoadKeyed* instr) { |
} |
-LInstruction* LChunkBuilder::DoLoadKeyedGeneric(HLoadKeyedGeneric* instr) { |
- LOperand* context = UseFixed(instr->context(), esi); |
- 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, eax), instr); |
-} |
- |
- |
LOperand* LChunkBuilder::GetStoreKeyedValueOperand(HStoreKeyed* instr) { |
ElementsKind elements_kind = instr->elements_kind(); |