| Index: runtime/vm/intermediate_language_mips.cc
|
| diff --git a/runtime/vm/intermediate_language_mips.cc b/runtime/vm/intermediate_language_mips.cc
|
| index bc00b8381396d1697805bc9cdef13909cb4f96be..248ab411f4c9020253fcf637a7b6a3a13a2cf151 100644
|
| --- a/runtime/vm/intermediate_language_mips.cc
|
| +++ b/runtime/vm/intermediate_language_mips.cc
|
| @@ -272,8 +272,7 @@ void ClosureCallInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
|
| // S5: Smi 0 (no IC data; the lazy-compile stub expects a GC-safe value).
|
| ASSERT(locs()->in(0).reg() == T0);
|
| __ LoadImmediate(S5, 0);
|
| - __ lw(T2, FieldAddress(T0, Function::instructions_offset()));
|
| - __ AddImmediate(T2, Instructions::HeaderSize() - kHeapObjectTag);
|
| + __ lw(T2, FieldAddress(T0, Function::entry_point_offset()));
|
| __ jalr(T2);
|
| compiler->RecordSafepoint(locs());
|
| // Marks either the continuation point in unoptimized code or the
|
|
|