diff options
author | Kenneth Zadeck <zadeck@naturalbridge.com> | 2007-08-30 17:43:04 +0000 |
---|---|---|
committer | Kenneth Zadeck <zadeck@gcc.gnu.org> | 2007-08-30 17:43:04 +0000 |
commit | 297e9b46f3e0e0cd143322f8a564c045d9cc836f (patch) | |
tree | 0195687885a9d5f5a8331cf379a629ca39f016c9 /gcc | |
parent | ffd640ed8493248affaaa529ad20e45626046c36 (diff) | |
download | gcc-297e9b46f3e0e0cd143322f8a564c045d9cc836f.zip gcc-297e9b46f3e0e0cd143322f8a564c045d9cc836f.tar.gz gcc-297e9b46f3e0e0cd143322f8a564c045d9cc836f.tar.bz2 |
cfg.c (dump_flow_info): Change to also print entry and exit block info.
2007-08-30 Kenneth Zadeck <zadeck@naturalbridge.com>
* cfg.c (dump_flow_info): Change to also print entry and exit
block info.
* print-rtl.c (print_rtl_single): Allow to print rtl with
-fdump-unnumbered.
From-SVN: r127932
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 7 | ||||
-rw-r--r-- | gcc/cfg.c | 2 | ||||
-rw-r--r-- | gcc/print-rtl.c | 12 |
3 files changed, 12 insertions, 9 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index cbd8746..b2167ac 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,12 @@ 2007-08-30 Kenneth Zadeck <zadeck@naturalbridge.com> + * cfg.c (dump_flow_info): Change to also print entry and exit + block info. + * print-rtl.c (print_rtl_single): Allow to print rtl with + -fdump-unnumbered. + +2007-08-30 Kenneth Zadeck <zadeck@naturalbridge.com> + * df-core.h (df_dump_region): New function. * df.h (df_dump_region): New function. * loop-invariant.c (find_defs): Add call to df_dump_region. @@ -646,7 +646,7 @@ dump_flow_info (FILE *file, int flags) dump_reg_info (file); fprintf (file, "\n%d basic blocks, %d edges.\n", n_basic_blocks, n_edges); - FOR_EACH_BB (bb) + FOR_ALL_BB (bb) { dump_bb_info (bb, true, true, flags, "", file); check_bb_profile (bb, file); diff --git a/gcc/print-rtl.c b/gcc/print-rtl.c index 2891967..a946312 100644 --- a/gcc/print-rtl.c +++ b/gcc/print-rtl.c @@ -749,14 +749,10 @@ print_rtl_single (FILE *outf, const_rtx x) { outfile = outf; sawclose = 0; - if (! flag_dump_unnumbered) - { - fputs (print_rtx_head, outfile); - print_rtx (x); - putc ('\n', outf); - return 1; - } - return 0; + fputs (print_rtx_head, outfile); + print_rtx (x); + putc ('\n', outf); + return 1; } |