diff options
author | Richard Guenther <rguenther@suse.de> | 2010-07-14 09:06:34 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2010-07-14 09:06:34 +0000 |
commit | f051cb5dca9c7d6d7313520662a84ebc7610ac50 (patch) | |
tree | cf8191f22e21dd947b2f81639606a29442f9f678 /gcc | |
parent | f6199e635e7a3286d5580d17903e881e2701d1a8 (diff) | |
download | gcc-f051cb5dca9c7d6d7313520662a84ebc7610ac50.zip gcc-f051cb5dca9c7d6d7313520662a84ebc7610ac50.tar.gz gcc-f051cb5dca9c7d6d7313520662a84ebc7610ac50.tar.bz2 |
re PR target/44930 (another problem with line break in output with -fverbose-asm)
2010-07-14 Richard Guenther <rguenther@suse.de>
PR middle-end/44930
* tree-pretty-print.c (do_niy): Do not print a newline.
From-SVN: r162174
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/tree-pretty-print.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f4d1cc2..684919a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2010-07-14 Richard Guenther <rguenther@suse.de> + + PR middle-end/44930 + * tree-pretty-print.c (do_niy): Do not print a newline. + 2010-07-14 Bernd Schmidt <bernds@codesourcery.com> * ira-int.h (struct ira_object): New. diff --git a/gcc/tree-pretty-print.c b/gcc/tree-pretty-print.c index fde9184..3e83cd7 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. */ |