]> gcc.gnu.org Git - gcc.git/commitdiff
gimple-pretty-print.c (dump_gimple_phi): Avoid excessive newline in -alias dumps.
authorRichard Guenther <rguenther@suse.de>
Tue, 7 Feb 2012 12:10:11 +0000 (12:10 +0000)
committerRichard Biener <rguenth@gcc.gnu.org>
Tue, 7 Feb 2012 12:10:11 +0000 (12:10 +0000)
2012-02-07  Richard Guenther  <rguenther@suse.de>

* gimple-pretty-print.c (dump_gimple_phi): Avoid excessive
newline in -alias dumps.

From-SVN: r183966

gcc/ChangeLog
gcc/gimple-pretty-print.c

index e6c03841aea850a5e6bcd0f52ffdc9f07b89d172..117e87b90d54042e6a0725cefd9fed689f8afe26 100644 (file)
@@ -1,3 +1,8 @@
+2012-02-07  Richard Guenther  <rguenther@suse.de>
+
+       * gimple-pretty-print.c (dump_gimple_phi): Avoid excessive
+       newline in -alias dumps.
+
 2012-02-07  Kai Tietz  <ktietz@redhat.com>
             Dave Korn  <dave.korn.cygwin@gmail.com>
 
index 3ba7183a553fb12f16433fed9ad8558b4d41b7c7..7b29aa6c17ed70393fcf4534404b8ceb2d134bb8 100644 (file)
@@ -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, "# ");
     }
 
This page took 0.079592 seconds and 5 git commands to generate.