Index: src/crankshaft/arm/lithium-arm.cc |
diff --git a/src/crankshaft/arm/lithium-arm.cc b/src/crankshaft/arm/lithium-arm.cc |
index 407eddafa2aae1ce7df9a57be83ef8ed32febd0b..73906010a8e53ef328d0e5c1eb11c23e0291f62b 100644 |
--- a/src/crankshaft/arm/lithium-arm.cc |
+++ b/src/crankshaft/arm/lithium-arm.cc |
@@ -304,15 +304,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("["); |
@@ -2276,20 +2267,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(), r1); |