| Index: runtime/vm/flow_graph_compiler_x64.cc
|
| diff --git a/runtime/vm/flow_graph_compiler_x64.cc b/runtime/vm/flow_graph_compiler_x64.cc
|
| index 59fed95ea7312340dd1259c15a917b0dc765381a..9b19d9450cae64ec83a9b903a125e1dc5bd63a70 100644
|
| --- a/runtime/vm/flow_graph_compiler_x64.cc
|
| +++ b/runtime/vm/flow_graph_compiler_x64.cc
|
| @@ -1477,10 +1477,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) {
|
| __ cmpl(RDI, Immediate(cid_start - bias));
|
| __ j(NOT_EQUAL, next_label);
|
|
|