diff options
author | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-07-14 09:06:34 +0000 |
---|---|---|
committer | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-07-14 09:06:34 +0000 |
commit | 5c304dd07aa3fef294179c3620852b7edad20276 (patch) | |
tree | cf8191f22e21dd947b2f81639606a29442f9f678 /gcc/tree-pretty-print.c | |
parent | f10a970e36b75ac92c8d636846e0a7da6af97d1f (diff) | |
download | gcc-5c304dd07aa3fef294179c3620852b7edad20276.tar.gz |
2010-07-14 Richard Guenther <rguenther@suse.de>
PR middle-end/44930
* tree-pretty-print.c (do_niy): Do not print a newline.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@162174 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-pretty-print.c')
-rw-r--r-- | gcc/tree-pretty-print.c | 2 |
1 files changed, 1 insertions, 1 deletions
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. */ |