Index: runtime/vm/flow_graph_compiler_mips.cc |
diff --git a/runtime/vm/flow_graph_compiler_mips.cc b/runtime/vm/flow_graph_compiler_mips.cc |
index c65528a9f08826a076be861b55e006393751fa4d..f27c80a90a7ab25c32b7faff11039e4324d5dd8b 100644 |
--- a/runtime/vm/flow_graph_compiler_mips.cc |
+++ b/runtime/vm/flow_graph_compiler_mips.cc |
@@ -1340,7 +1340,7 @@ void FlowGraphCompiler::EmitMegamorphicInstanceCall( |
__ Comment("Slow case: megamorphic call"); |
} |
__ LoadObject(S5, cache); |
- __ lw(T9, Address(THR, Thread::megamorphic_lookup_checked_entry_offset())); |
+ __ lw(T9, Address(THR, Thread::megamorphic_call_checked_entry_offset())); |
__ jalr(T9); |
__ Bind(&done); |
@@ -1380,7 +1380,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"); |
__ lw(T0, Address(SP, (argument_count - 1) * kWordSize)); |