Chromium Code Reviews| Index: runtime/vm/flow_graph_compiler.cc |
| diff --git a/runtime/vm/flow_graph_compiler.cc b/runtime/vm/flow_graph_compiler.cc |
| index ab586c9fb5834f2acecbb0fb130f4e56963ed741..aba3d8dea6054c24c9d62e7fc3fec8695638d98e 100644 |
| --- a/runtime/vm/flow_graph_compiler.cc |
| +++ b/runtime/vm/flow_graph_compiler.cc |
| @@ -67,6 +67,7 @@ DECLARE_FLAG(bool, use_cha_deopt); |
| DECLARE_FLAG(bool, use_osr); |
| DECLARE_FLAG(bool, warn_on_javascript_compatibility); |
| DECLARE_FLAG(bool, precompile_collect_closures); |
| +DECLARE_FLAG(bool, print_stop_message); |
|
rmacnak
2015/08/26 23:55:24
I don't see any use of this flag.
Florian Schneider
2015/08/27 08:27:20
It's right below.
rmacnak
2015/08/27 20:14:05
Nvm, I thought this was defining a new flag.
|
| static void NooptModeHandler(bool value) { |
| @@ -92,6 +93,9 @@ static void NooptModeHandler(bool value) { |
| // TODO(srdjan): Enable CHA deoptimization when eager class finalization is |
| // implemented, either with precompilation or as a special pass. |
| FLAG_use_cha_deopt = false; |
| + // Calling the PrintStopMessage stub is not supported in precompiled code |
| + // since it is done at places where no pool pointer is loaded. |
| + FLAG_print_stop_message = false; |
| } |
| } |