| 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 5f7a62f6b3aa39891485325c6b24d829de0c701b..0800a186de38ddf8d9b21235132f337e4762b33f 100644
|
| --- a/runtime/vm/flow_graph_compiler_mips.cc
|
| +++ b/runtime/vm/flow_graph_compiler_mips.cc
|
| @@ -1558,10 +1558,10 @@ void FlowGraphCompiler::EmitTestAndCallLoadCid() {
|
|
|
|
|
| int FlowGraphCompiler::EmitTestAndCallCheckCid(Label* next_label,
|
| - const CidRangeTarget& target,
|
| + const CidRange& range,
|
| int bias) {
|
| - intptr_t cid_start = target.cid_start;
|
| - intptr_t cid_end = target.cid_end;
|
| + intptr_t cid_start = range.cid_start;
|
| + intptr_t cid_end = range.cid_end;
|
| if (cid_start == cid_end) {
|
| __ BranchNotEqual(T2, Immediate(cid_start - bias), next_label);
|
| } else {
|
|
|