From b1edf2bc09f80f488820b2248ad4986b5b271986 Mon Sep 17 00:00:00 2001 From: Richard Guenther Date: Tue, 7 Feb 2012 12:10:11 +0000 Subject: [PATCH] gimple-pretty-print.c (dump_gimple_phi): Avoid excessive newline in -alias dumps. 2012-02-07 Richard Guenther * gimple-pretty-print.c (dump_gimple_phi): Avoid excessive newline in -alias dumps. From-SVN: r183966 --- gcc/ChangeLog | 5 +++++ gcc/gimple-pretty-print.c | 8 +++++--- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e6c03841aea..117e87b90d5 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2012-02-07 Richard Guenther + + * gimple-pretty-print.c (dump_gimple_phi): Avoid excessive + newline in -alias dumps. + 2012-02-07 Kai Tietz Dave Korn 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, "# "); }