Index: src/crankshaft/ia32/lithium-ia32.cc |
diff --git a/src/crankshaft/ia32/lithium-ia32.cc b/src/crankshaft/ia32/lithium-ia32.cc |
index 5695826f62e9dfe7893d14692eb76d9b3d5130b6..f7aa899200503f3a4bf640ceef40043d53514519 100644 |
--- a/src/crankshaft/ia32/lithium-ia32.cc |
+++ b/src/crankshaft/ia32/lithium-ia32.cc |
@@ -351,15 +351,6 @@ void LStoreNamedField::PrintDataTo(StringStream* stream) { |
} |
-void LStoreNamedGeneric::PrintDataTo(StringStream* stream) { |
- object()->PrintTo(stream); |
- stream->Add("."); |
- stream->Add(String::cast(*name())->ToCString().get()); |
- stream->Add(" <- "); |
- value()->PrintTo(stream); |
-} |
- |
- |
void LLoadKeyed::PrintDataTo(StringStream* stream) { |
elements()->PrintTo(stream); |
stream->Add("["); |
@@ -2332,20 +2323,6 @@ LInstruction* LChunkBuilder::DoStoreNamedField(HStoreNamedField* instr) { |
} |
-LInstruction* LChunkBuilder::DoStoreNamedGeneric(HStoreNamedGeneric* instr) { |
- LOperand* context = UseFixed(instr->context(), esi); |
- LOperand* object = |
- UseFixed(instr->object(), StoreDescriptor::ReceiverRegister()); |
- LOperand* value = UseFixed(instr->value(), StoreDescriptor::ValueRegister()); |
- LOperand* slot = FixedTemp(StoreWithVectorDescriptor::SlotRegister()); |
- LOperand* vector = FixedTemp(StoreWithVectorDescriptor::VectorRegister()); |
- |
- LStoreNamedGeneric* result = |
- new (zone()) LStoreNamedGeneric(context, object, value, slot, vector); |
- return MarkAsCall(result, instr); |
-} |
- |
- |
LInstruction* LChunkBuilder::DoStringAdd(HStringAdd* instr) { |
LOperand* context = UseFixed(instr->context(), esi); |
LOperand* left = UseFixed(instr->left(), edx); |