| Index: runtime/vm/flow_graph_inliner.cc
|
| ===================================================================
|
| --- runtime/vm/flow_graph_inliner.cc (revision 13836)
|
| +++ runtime/vm/flow_graph_inliner.cc (working copy)
|
| @@ -19,10 +19,10 @@
|
|
|
| DEFINE_FLAG(bool, trace_inlining, false, "Trace inlining");
|
| DEFINE_FLAG(charp, inlining_filter, NULL, "Inline only in named function");
|
| -DEFINE_FLAG(int, inlining_size_threshold, 250,
|
| - "Inline only functions with up to threshold instructions (default 250)");
|
| -DEFINE_FLAG(int, inlining_depth_threshold, 1,
|
| - "Inline recursively up to threshold depth (default 1)");
|
| +DEFINE_FLAG(int, inlining_size_threshold, 50,
|
| + "Inline only functions with up to threshold instructions (default 50)");
|
| +DEFINE_FLAG(int, inlining_depth_threshold, 3,
|
| + "Inline recursively up to threshold depth (default 3)");
|
| DEFINE_FLAG(bool, inline_control_flow, true,
|
| "Inline functions with control flow.");
|
| DECLARE_FLAG(bool, print_flow_graph);
|
|
|