From patchwork Tue Feb 7 12:05:36 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: Avoid excessive newline in -alias dumps Date: Tue, 07 Feb 2012 02:05:36 -0000 From: Richard Guenther X-Patchwork-Id: 139905 Message-Id: To: gcc-patches@gcc.gnu.org Committed as obvious. Richard. 2012-02-07 Richard Guenther * gimple-pretty-print.c (dump_gimple_phi): Avoid excessive newline in -alias dumps. Index: gcc/gimple-pretty-print.c =================================================================== --- gcc/gimple-pretty-print.c (revision 183959) +++ gcc/gimple-pretty-print.c (working copy) @@ -1595,9 +1595,11 @@ dump_gimple_phi (pretty_printer *buffer, 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, "# "); }