| 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 d2670ebf999bd4289550150ea694b13fcb439d10..14e99afcf9448a6f34a69897476a936273882244 100644
|
| --- a/runtime/vm/flow_graph_compiler_mips.cc
|
| +++ b/runtime/vm/flow_graph_compiler_mips.cc
|
| @@ -964,7 +964,7 @@ void FlowGraphCompiler::GenerateInlinedGetter(intptr_t offset) {
|
| // Sequence node has one return node, its input is load field node.
|
| __ Comment("Inlined Getter");
|
| __ lw(V0, Address(SP, 0 * kWordSize));
|
| - __ lw(V0, Address(V0, offset - kHeapObjectTag));
|
| + __ LoadFieldFromOffset(V0, V0, offset);
|
| __ Ret();
|
| }
|
|
|
|
|