Index: src/crankshaft/mips/lithium-mips.cc |
diff --git a/src/crankshaft/mips/lithium-mips.cc b/src/crankshaft/mips/lithium-mips.cc |
index 7cfe2798217ec3d927dc698643c6ff49c64773e1..57cc0ca90c367162fa4d96ef813a987178cc6415 100644 |
--- a/src/crankshaft/mips/lithium-mips.cc |
+++ b/src/crankshaft/mips/lithium-mips.cc |
@@ -311,15 +311,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("["); |
@@ -2223,20 +2214,6 @@ LInstruction* LChunkBuilder::DoStoreNamedField(HStoreNamedField* instr) { |
} |
-LInstruction* LChunkBuilder::DoStoreNamedGeneric(HStoreNamedGeneric* instr) { |
- LOperand* context = UseFixed(instr->context(), cp); |
- LOperand* obj = |
- UseFixed(instr->object(), StoreDescriptor::ReceiverRegister()); |
- LOperand* val = UseFixed(instr->value(), StoreDescriptor::ValueRegister()); |
- LOperand* slot = FixedTemp(StoreWithVectorDescriptor::SlotRegister()); |
- LOperand* vector = FixedTemp(StoreWithVectorDescriptor::VectorRegister()); |
- |
- LStoreNamedGeneric* result = |
- new (zone()) LStoreNamedGeneric(context, obj, val, slot, vector); |
- return MarkAsCall(result, instr); |
-} |
- |
- |
LInstruction* LChunkBuilder::DoStringAdd(HStringAdd* instr) { |
LOperand* context = UseFixed(instr->context(), cp); |
LOperand* left = UseFixed(instr->left(), a1); |