Index: src/crankshaft/x87/lithium-x87.cc |
diff --git a/src/crankshaft/x87/lithium-x87.cc b/src/crankshaft/x87/lithium-x87.cc |
index b0cc7330c5c27c16f415dd8cbe3f14f2330040c2..5ee11ffa24bd9ee54ab688f231f2d9e171da7c2b 100644 |
--- a/src/crankshaft/x87/lithium-x87.cc |
+++ b/src/crankshaft/x87/lithium-x87.cc |
@@ -362,15 +362,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("["); |
@@ -2334,20 +2325,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); |