| Index: runtime/vm/flow_graph_inliner.cc
|
| ===================================================================
|
| --- runtime/vm/flow_graph_inliner.cc (revision 43352)
|
| +++ runtime/vm/flow_graph_inliner.cc (working copy)
|
| @@ -1692,7 +1692,9 @@
|
|
|
| void PolymorphicInliner::Inline() {
|
| // Consider the polymorphic variants in order by frequency.
|
| - FlowGraphCompiler::SortICDataByCount(call_->ic_data(), &variants_);
|
| + FlowGraphCompiler::SortICDataByCount(call_->ic_data(),
|
| + &variants_,
|
| + /* drop_smi = */ false);
|
| for (intptr_t var_idx = 0; var_idx < variants_.length(); ++var_idx) {
|
| const Function& target = *variants_[var_idx].target;
|
| const intptr_t receiver_cid = variants_[var_idx].cid;
|
|
|