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