diff options
author | Steven Bosscher <steven@gcc.gnu.org> | 2004-10-08 22:56:55 +0000 |
---|---|---|
committer | Steven Bosscher <steven@gcc.gnu.org> | 2004-10-08 22:56:55 +0000 |
commit | b7211528d51b9069f57eef8f0bde905618ba8fce (patch) | |
tree | 0e70dc6e47d913581bbdee9730cb947877160d2e /gcc/tree-optimize.c | |
parent | a1e063e53ac1b57747b885f963af8660856d7bfd (diff) | |
download | gcc-b7211528d51b9069f57eef8f0bde905618ba8fce.zip gcc-b7211528d51b9069f57eef8f0bde905618ba8fce.tar.gz gcc-b7211528d51b9069f57eef8f0bde905618ba8fce.tar.bz2 |
cfgexpand.c (maybe_dump_rtl_for_tree_stmt): New function.
* cfgexpand.c (maybe_dump_rtl_for_tree_stmt): New function.
(expand_gimple_cond_expr, expand_gimple_tailcall,
expand_gimple_basic_block): Use it to dump RTL for each stmt.
(tree_expand_cfg): Announce full RTL function dump.
* tree-optimize.c (execute_one_pass): Use normal RTL printing,
not the graph version.
* tree-pretty-print.c (dump_generic_node): Allow empty statements
in the arms of a COND_EXPR for lowered nodes.
From-SVN: r88800
Diffstat (limited to 'gcc/tree-optimize.c')
-rw-r--r-- | gcc/tree-optimize.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-optimize.c b/gcc/tree-optimize.c index 1d145dc..4fd6240 100644 --- a/gcc/tree-optimize.c +++ b/gcc/tree-optimize.c @@ -505,7 +505,7 @@ execute_one_pass (struct tree_opt_pass *pass) if (dump_file && (pass->properties_provided & (PROP_cfg | PROP_rtl)) == (PROP_cfg | PROP_rtl)) - print_rtl_graph_with_bb (dump_file_name, get_insns ()); + print_rtl_with_bb (dump_file, get_insns ()); /* Run post-pass cleanup and verification. */ todo = pass->todo_flags_finish; |