From f051cb5dca9c7d6d7313520662a84ebc7610ac50 Mon Sep 17 00:00:00 2001 From: Richard Guenther Date: Wed, 14 Jul 2010 09:06:34 +0000 Subject: [PATCH] re PR target/44930 (another problem with line break in output with -fverbose-asm) 2010-07-14 Richard Guenther PR middle-end/44930 * tree-pretty-print.c (do_niy): Do not print a newline. From-SVN: r162174 --- gcc/ChangeLog | 5 +++++ gcc/tree-pretty-print.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f4d1cc2e8a5..684919aa222 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2010-07-14 Richard Guenther + + PR middle-end/44930 + * tree-pretty-print.c (do_niy): Do not print a newline. + 2010-07-14 Bernd Schmidt * ira-int.h (struct ira_object): New. diff --git a/gcc/tree-pretty-print.c b/gcc/tree-pretty-print.c index fde91844ec7..3e83cd70ed3 100644 --- a/gcc/tree-pretty-print.c +++ b/gcc/tree-pretty-print.c @@ -71,7 +71,7 @@ do_niy (pretty_printer *buffer, const_tree node) } } - pp_string (buffer, " >>>\n"); + pp_string (buffer, " >>>"); } /* Debugging function to print out a generic expression. */