| Index: src/arm/lithium-arm.cc
|
| diff --git a/src/arm/lithium-arm.cc b/src/arm/lithium-arm.cc
|
| index b55679ee0147b30f702b6cff74ae879ad7811f44..04e26bb1a3c824a372d2a9c9dd73aacfab23f421 100644
|
| --- a/src/arm/lithium-arm.cc
|
| +++ b/src/arm/lithium-arm.cc
|
| @@ -272,24 +272,6 @@ void LCallConstantFunction::PrintDataTo(StringStream* stream) {
|
| }
|
|
|
|
|
| -ExternalReference LLinkObjectInList::GetReference(Isolate* isolate) {
|
| - switch (hydrogen()->known_list()) {
|
| - case HLinkObjectInList::ALLOCATION_SITE_LIST:
|
| - return ExternalReference::allocation_sites_list_address(isolate);
|
| - }
|
| -
|
| - UNREACHABLE();
|
| - // Return a dummy value
|
| - return ExternalReference::isolate_address(isolate);
|
| -}
|
| -
|
| -
|
| -void LLinkObjectInList::PrintDataTo(StringStream* stream) {
|
| - object()->PrintTo(stream);
|
| - stream->Add(" offset %d", hydrogen()->store_field().offset());
|
| -}
|
| -
|
| -
|
| void LLoadContextSlot::PrintDataTo(StringStream* stream) {
|
| context()->PrintTo(stream);
|
| stream->Add("[%d]", slot_index());
|
| @@ -2140,13 +2122,6 @@ LInstruction* LChunkBuilder::DoStoreGlobalGeneric(HStoreGlobalGeneric* instr) {
|
| }
|
|
|
|
|
| -LInstruction* LChunkBuilder::DoLinkObjectInList(HLinkObjectInList* instr) {
|
| - LOperand* object = UseRegister(instr->value());
|
| - LLinkObjectInList* result = new(zone()) LLinkObjectInList(object);
|
| - return result;
|
| -}
|
| -
|
| -
|
| LInstruction* LChunkBuilder::DoLoadContextSlot(HLoadContextSlot* instr) {
|
| LOperand* context = UseRegisterAtStart(instr->value());
|
| LInstruction* result =
|
|
|