diff options
author | bonzini <bonzini@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-02-15 09:15:56 +0000 |
---|---|---|
committer | bonzini <bonzini@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-02-15 09:15:56 +0000 |
commit | 562d71e815ab06366be965829e291b264cfdd7b5 (patch) | |
tree | 1615cb62d40221497e159fa5d08ee5fb0cbdb56f /gcc/bb-reorder.c | |
parent | 15348a37ae1808663e1cf7bf164e9e61b969f2e4 (diff) | |
download | gcc-562d71e815ab06366be965829e291b264cfdd7b5.tar.gz |
2006-02-15 Paolo Bonzini <bonzini@gnu.org>
* cfg.c (dump_flow_info): Get dump flags as an additional parameter.
(debug_flow_info): Pass it.
* alias.c (rest_of_handle_cfg): Adjust calls to dump_flow_info.
* bb-reorder.c (reorder_basic_blocks): Likewise.
* cfgcleanup.c (rest_of_handle_jump2): Likewise.
* cse.c (rest_of_handle_cse, rest_of_handle_cse2): Likewise.
* flow.c (life_analysis, recompute_reg_usage): Likewise.
* gcse.c (gcse_main, bypass_jumps): Likewise.
* ifcvt.c (rest_of_handle_if_conversion): Likewise.
* local-alloc.c (rest_of_handle_local_alloc): Likewise.
* loop-init.c (rtl_loop_init, rtl_loop_done): Likewise.
* profile.c (compute_branch_probabilities, branch_prob): Likewise.
* rtl.h (dump_flow_info): Adjust prototype.
* tracer.c (rest_of_handle_tracer, tracer): Likewise.
* var-tracking.c (variable_tracking_main): Likewise.
* passes.c (execute_todo): Obey TDF_BLOCKS for RTL.
* tree-dump.c (enable_rtl_dump_file): Enable the details and blocks
options.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@111020 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/bb-reorder.c')
-rw-r--r-- | gcc/bb-reorder.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/bb-reorder.c b/gcc/bb-reorder.c index 73c759705a2..640907081e7 100644 --- a/gcc/bb-reorder.c +++ b/gcc/bb-reorder.c @@ -1930,7 +1930,7 @@ reorder_basic_blocks (unsigned int flags) FREE (bbd); if (dump_file) - dump_flow_info (dump_file); + dump_flow_info (dump_file, dump_flags); cfg_layout_finalize (); if (flag_reorder_blocks_and_partition) |