| Index: runtime/vm/stub_code_arm.cc
|
| diff --git a/runtime/vm/stub_code_arm.cc b/runtime/vm/stub_code_arm.cc
|
| index e648491e6551bc40a0b6e035112029804838efea..9459b29e51d516149b062ebc7ef6dabf84a8dd8a 100644
|
| --- a/runtime/vm/stub_code_arm.cc
|
| +++ b/runtime/vm/stub_code_arm.cc
|
| @@ -366,8 +366,7 @@ static void PushArgumentsArray(Assembler* assembler) {
|
| __ LoadImmediate(R1, reinterpret_cast<intptr_t>(Object::null()));
|
| // R1: null element type for raw Array.
|
| // R2: smi-tagged argument count, may be zero.
|
| - const ExternalLabel array_label(StubCode::AllocateArrayEntryPoint());
|
| - __ BranchLink(&array_label);
|
| + __ BranchLink(*StubCode::AllocateArray_entry());
|
| // R0: newly allocated array.
|
| // R2: smi-tagged argument count, may be zero (was preserved by the stub).
|
| __ Push(R0); // Array is in R0 and on top of stack.
|
| @@ -1173,7 +1172,7 @@ void StubCode::GenerateAllocationStubForClass(
|
| __ LeaveStubFrame();
|
| __ Ret();
|
| *patch_code_pc_offset = assembler->CodeSize();
|
| - __ BranchPatchable(&StubCode::FixAllocationStubTargetLabel());
|
| + __ BranchPatchable(*StubCode::FixAllocationStubTarget_entry());
|
| }
|
|
|
|
|
|
|