gimple-pretty-print.c (dump_gimple_phi): Avoid excessive newline in -alias dumps.
2012-02-07 Richard Guenther <rguenther@suse.de> * gimple-pretty-print.c (dump_gimple_phi): Avoid excessive newline in -alias dumps. From-SVN: r183966
This commit is contained in:
parent
be648db7d0
commit
b1edf2bc09
2 changed files with 10 additions and 3 deletions
|
@ -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>
|
||||
|
||||
|
|
|
@ -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, "# ");
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue