From c50367a23cc541ed6d68388a1f5654ec46ece75b Mon Sep 17 00:00:00 2001 From: Andrew Pinski Date: Fri, 1 Jul 2005 14:26:18 +0000 Subject: [PATCH] re PR other/22264 (bootstrap broken) 2005-07-01 Andrew Pinski PR other/22264 * diagnostic.c (diagnostic_report_current_module): Use pp_newline to print out the last new line. From-SVN: r101504 --- gcc/ChangeLog | 6 ++++++ gcc/diagnostic.c | 3 ++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 31e740764f6..37b484df4bc 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2005-07-01 Andrew Pinski + + PR other/22264 + * diagnostic.c (diagnostic_report_current_module): Use pp_newline to + print out the last new line. + 2005-07-01 Hans-Peter Nilsson * config/cris/cris.md (CRIS_CC0_REGNUM): New constant. diff --git a/gcc/diagnostic.c b/gcc/diagnostic.c index ef4b07f4226..c416010b223 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); } } -- 2.30.2