diff options
author | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-02-07 12:10:11 +0000 |
---|---|---|
committer | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-02-07 12:10:11 +0000 |
commit | 57d4f31344872243bac09c926b7946498624d2a1 (patch) | |
tree | dc554b4c6b70bbda6d76bf796c000bc6880d8359 /gcc/gimple-pretty-print.c | |
parent | fad5552949444db04a17da9ff9f307e3054b8f9d (diff) | |
download | gcc-57d4f31344872243bac09c926b7946498624d2a1.tar.gz |
2012-02-07 Richard Guenther <rguenther@suse.de>
* gimple-pretty-print.c (dump_gimple_phi): Avoid excessive
newline in -alias dumps.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@183966 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/gimple-pretty-print.c')
-rw-r--r-- | gcc/gimple-pretty-print.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gcc/gimple-pretty-print.c b/gcc/gimple-pretty-print.c index 3ba7183a553..7b29aa6c17e 100644 --- a/gcc/gimple-pretty-print.c +++ b/gcc/gimple-pretty-print.c @@ -1595,9 +1595,11 @@ dump_gimple_phi (pretty_printer *buffer, gimple phi, int spc, int flags) pp_points_to_solution (buffer, &pi->pt); newline_and_indent (buffer, spc); if (pi->align != 1) - pp_printf (buffer, "# ALIGN = %u, MISALIGN = %u", - pi->align, pi->misalign); - newline_and_indent (buffer, spc); + { + pp_printf (buffer, "# ALIGN = %u, MISALIGN = %u", + pi->align, pi->misalign); + newline_and_indent (buffer, spc); + } pp_string (buffer, "# "); } |