aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorKenneth Zadeck <zadeck@naturalbridge.com>2007-08-30 17:43:04 +0000
committerKenneth Zadeck <zadeck@gcc.gnu.org>2007-08-30 17:43:04 +0000
commit297e9b46f3e0e0cd143322f8a564c045d9cc836f (patch)
tree0195687885a9d5f5a8331cf379a629ca39f016c9 /gcc
parentffd640ed8493248affaaa529ad20e45626046c36 (diff)
downloadgcc-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/ChangeLog7
-rw-r--r--gcc/cfg.c2
-rw-r--r--gcc/print-rtl.c12
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.
diff --git a/gcc/cfg.c b/gcc/cfg.c
index c62033c..e397bf5 100644
--- a/gcc/cfg.c
+++ b/gcc/cfg.c
@@ -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;
}