Index: src/crankshaft/ppc/lithium-ppc.cc |
diff --git a/src/crankshaft/ppc/lithium-ppc.cc b/src/crankshaft/ppc/lithium-ppc.cc |
index d2151e74279037e441cb630cd4b50a11067bbeb7..e1e87dba009899499120b32e6e25af7996561d55 100644 |
--- a/src/crankshaft/ppc/lithium-ppc.cc |
+++ b/src/crankshaft/ppc/lithium-ppc.cc |
@@ -317,15 +317,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("["); |
@@ -2245,19 +2236,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(), r4); |