| Index: runtime/vm/flow_graph_inliner.cc
|
| diff --git a/runtime/vm/flow_graph_inliner.cc b/runtime/vm/flow_graph_inliner.cc
|
| index 15e6df81b171783a912fe21fa309b10c115a3234..4558352cfdfc4c0096db4018d7c9ea019231512e 100644
|
| --- a/runtime/vm/flow_graph_inliner.cc
|
| +++ b/runtime/vm/flow_graph_inliner.cc
|
| @@ -4,6 +4,7 @@
|
|
|
| #include "vm/flow_graph_inliner.h"
|
|
|
| +#include "vm/block_scheduler.h"
|
| #include "vm/compiler.h"
|
| #include "vm/flags.h"
|
| #include "vm/flow_graph.h"
|
| @@ -592,6 +593,9 @@ class CallSiteInliner : public ValueObject {
|
| ASSERT(arguments->length() == function.NumParameters());
|
| ASSERT(param_stubs->length() == callee_graph->parameter_count());
|
|
|
| + BlockScheduler block_scheduler(callee_graph);
|
| + block_scheduler.AssignEdgeWeights();
|
| +
|
| {
|
| TimerScope timer(FLAG_compiler_stats,
|
| &CompilerStats::graphinliner_ssa_timer,
|
|
|