| Index: src/crankshaft/arm64/lithium-arm64.cc
|
| diff --git a/src/crankshaft/arm64/lithium-arm64.cc b/src/crankshaft/arm64/lithium-arm64.cc
|
| index 79f70c8ed2a5aa3b3f2d14257111ea334ec10415..329161a0860bcf52db536bd8c99329040128a617 100644
|
| --- a/src/crankshaft/arm64/lithium-arm64.cc
|
| +++ b/src/crankshaft/arm64/lithium-arm64.cc
|
| @@ -271,15 +271,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 LStringCompareAndBranch::PrintDataTo(StringStream* stream) {
|
| stream->Add("if string_compare(");
|
| left()->PrintTo(stream);
|
| @@ -2258,21 +2249,6 @@ LInstruction* LChunkBuilder::DoStoreNamedField(HStoreNamedField* instr) {
|
| }
|
|
|
|
|
| -LInstruction* LChunkBuilder::DoStoreNamedGeneric(HStoreNamedGeneric* instr) {
|
| - LOperand* context = UseFixed(instr->context(), cp);
|
| - 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(), cp);
|
| LOperand* left = UseFixed(instr->left(), x1);
|
|
|