diff options
author | Andrew Pinski <pinskia@physics.uc.edu> | 2005-07-01 14:26:18 +0000 |
---|---|---|
committer | Andrew Pinski <pinskia@gcc.gnu.org> | 2005-07-01 07:26:18 -0700 |
commit | c50367a23cc541ed6d68388a1f5654ec46ece75b (patch) | |
tree | c4bd78499a2708285f4e4827847120075d89e3bc /gcc/diagnostic.c | |
parent | 948884cd854b5f894f74db3fb45353b2d8d0a47c (diff) | |
download | gcc-c50367a23cc541ed6d68388a1f5654ec46ece75b.zip gcc-c50367a23cc541ed6d68388a1f5654ec46ece75b.tar.gz gcc-c50367a23cc541ed6d68388a1f5654ec46ece75b.tar.bz2 |
re PR other/22264 (bootstrap broken)
2005-07-01 Andrew Pinski <pinskia@physics.uc.edu>
PR other/22264
* diagnostic.c (diagnostic_report_current_module): Use pp_newline to
print out the last new line.
From-SVN: r101504
Diffstat (limited to 'gcc/diagnostic.c')
-rw-r--r-- | gcc/diagnostic.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/diagnostic.c b/gcc/diagnostic.c index ef4b07f..c416010 100644 --- a/gcc/diagnostic.c +++ b/gcc/diagnostic.c @@ -291,8 +291,9 @@ diagnostic_report_current_module (diagnostic_context *context) ",\n from %s:%d", xloc.file, xloc.line); } - pp_verbatim (context->printer, ":\n"); + pp_verbatim (context->printer, ":"); diagnostic_set_last_module (context); + pp_newline (context->printer); } } |