From: Steven Bosscher Date: Fri, 3 Aug 2012 08:00:24 +0000 (+0000) Subject: cfgrtl.c (print_rtl_with_bb): Do not print a newline between insns. X-Git-Tag: releases/gcc-4.8.0~4140 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1b03a96df6de779e0ef83460223ef99a90111c3b;p=thirdparty%2Fgcc.git cfgrtl.c (print_rtl_with_bb): Do not print a newline between insns. * cfgrtl.c (print_rtl_with_bb): Do not print a newline between insns. From-SVN: r190114 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index cb958ce43619..bb5590523955 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,6 +1,8 @@ 2012-08-04 Steven Bosscher - * sched-vis (print_pattern): Handle SEQUENCE also. + * cfgrtl.c (print_rtl_with_bb): Do not print a newline between insns. + + * sched-vis.c (print_pattern): Handle SEQUENCE also. 2012-08-02 Richard Henderson diff --git a/gcc/cfgrtl.c b/gcc/cfgrtl.c index 2bf22d86880a..feff53d21115 100644 --- a/gcc/cfgrtl.c +++ b/gcc/cfgrtl.c @@ -1958,10 +1958,9 @@ print_rtl_with_bb (FILE *outf, const_rtx rtx_first, int flags) dump_bb_info (outf, bb, 0, dump_flags | TDF_COMMENT, false, true); if (df && (flags & TDF_DETAILS)) df_dump_bottom (bb, outf); + putc ('\n', outf); } } - - putc ('\n', outf); } free (start);