| Index: src/crankshaft/s390/lithium-s390.cc
|
| diff --git a/src/crankshaft/s390/lithium-s390.cc b/src/crankshaft/s390/lithium-s390.cc
|
| index afc1ce82b763387c0f78b20e5e9cc79c670fb35d..feebe0bbac5fa2b8e0dcf99e3b699704fe45791e 100644
|
| --- a/src/crankshaft/s390/lithium-s390.cc
|
| +++ b/src/crankshaft/s390/lithium-s390.cc
|
| @@ -287,14 +287,6 @@ void LStoreNamedField::PrintDataTo(StringStream* stream) {
|
| value()->PrintTo(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("[");
|
| @@ -2058,18 +2050,6 @@ LInstruction* LChunkBuilder::DoStoreNamedField(HStoreNamedField* instr) {
|
| return new (zone()) LStoreNamedField(obj, val, temp);
|
| }
|
|
|
| -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(), r3);
|
|
|