| Index: runtime/vm/intrinsifier.cc
|
| ===================================================================
|
| --- runtime/vm/intrinsifier.cc (revision 43679)
|
| +++ runtime/vm/intrinsifier.cc (working copy)
|
| @@ -154,7 +154,7 @@
|
| #undef EMIT_CASE
|
| }
|
|
|
| - if (FLAG_print_flow_graph) {
|
| + if (FLAG_print_flow_graph && FlowGraphPrinter::ShouldPrint(function)) {
|
| OS::Print("Intrinsic graph before\n");
|
| FlowGraphPrinter printer(*graph);
|
| printer.PrintBlocks();
|
| @@ -164,7 +164,7 @@
|
| FlowGraphAllocator allocator(*graph, true); // Intrinsic mode.
|
| allocator.AllocateRegisters();
|
|
|
| - if (FLAG_print_flow_graph) {
|
| + if (FLAG_print_flow_graph && FlowGraphPrinter::ShouldPrint(function)) {
|
| OS::Print("Intrinsic graph after\n");
|
| FlowGraphPrinter printer(*graph);
|
| printer.PrintBlocks();
|
|
|