| Index: runtime/vm/flow_graph_inliner.cc
|
| diff --git a/runtime/vm/flow_graph_inliner.cc b/runtime/vm/flow_graph_inliner.cc
|
| index 59e84f0cd04bce81c5c88cbad27761aac58c80d3..6e5ae690f8448181d6b8035dab160a08e4ac82b8 100644
|
| --- a/runtime/vm/flow_graph_inliner.cc
|
| +++ b/runtime/vm/flow_graph_inliner.cc
|
| @@ -577,7 +577,7 @@ class CallSiteInliner : public ValueObject {
|
| // from the function while we are trying to inline it.
|
| const Code& unoptimized_code = Code::Handle(function.unoptimized_code());
|
| // Abort if the inlinable bit on the function is low.
|
| - if (!function.IsInlineable()) {
|
| + if (!function.CanBeInlined()) {
|
| TRACE_INLINING(OS::Print(" Bailout: not inlinable\n"));
|
| PRINT_INLINING_TREE("Not inlinable",
|
| &call_data->caller, &function, call_data->call);
|
|
|