| Index: runtime/vm/flow_graph_compiler_arm64.cc
|
| diff --git a/runtime/vm/flow_graph_compiler_arm64.cc b/runtime/vm/flow_graph_compiler_arm64.cc
|
| index 4e9eee7da56f3cd86c5b40bbdd68f95f09dfe337..304dcb3fb352ceb1dcb277563777a215f780b189 100644
|
| --- a/runtime/vm/flow_graph_compiler_arm64.cc
|
| +++ b/runtime/vm/flow_graph_compiler_arm64.cc
|
| @@ -1316,7 +1316,7 @@ void FlowGraphCompiler::EmitMegamorphicInstanceCall(
|
| }
|
|
|
| __ LoadObject(R5, cache);
|
| - __ ldr(LR, Address(THR, Thread::megamorphic_lookup_checked_entry_offset()));
|
| + __ ldr(LR, Address(THR, Thread::megamorphic_call_checked_entry_offset()));
|
| __ blr(LR);
|
|
|
| __ Bind(&done);
|
| @@ -1356,7 +1356,7 @@ void FlowGraphCompiler::EmitSwitchableInstanceCall(
|
| LocationSummary* locs) {
|
| ASSERT(ic_data.NumArgsTested() == 1);
|
| const Code& initial_stub = Code::ZoneHandle(
|
| - StubCode::ICLookupThroughFunction_entry()->code());
|
| + StubCode::ICCallThroughFunction_entry()->code());
|
| __ Comment("SwitchableCall");
|
|
|
| __ LoadFromOffset(R0, SP, (argument_count - 1) * kWordSize);
|
|
|