From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 26904 invoked by alias); 1 Jul 2005 01:56:47 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Received: (qmail 25993 invoked by uid 48); 1 Jul 2005 01:56:36 -0000 Date: Fri, 01 Jul 2005 01:56:00 -0000 Message-ID: <20050701015636.25990.qmail@sourceware.org> From: "pinskia at gcc dot gnu dot org" To: gcc-bugs@gcc.gnu.org In-Reply-To: <20050701003226.22264.hp@gcc.gnu.org> References: <20050701003226.22264.hp@gcc.gnu.org> Reply-To: gcc-bugzilla@gcc.gnu.org Subject: [Bug other/22264] [4.1 Regression] cris-axis-elf, mmix-knuth-mmixware, powerpc-darwin broken X-Bugzilla-Reason: CC X-SW-Source: 2005-07/txt/msg00011.txt.bz2 List-Id: ------- Additional Comments From pinskia at gcc dot gnu dot org 2005-07-01 01:56 ------- The following patch should fix this but I don't have time to test it fully as I still have to fix another bootstrap problem on powerpc-darwin: Index: diagnostic.c =============================================================== ==== RCS file: /cvs/gcc/gcc/gcc/diagnostic.c,v retrieving revision 1.154 diff -u -p -r1.154 diagnostic.c --- diagnostic.c 30 Jun 2005 23:08:44 -0000 1.154 +++ diagnostic.c 1 Jul 2005 01:53:44 -0000 @@ -291,8 +291,9 @@ diagnostic_report_current_module (diagno ",\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); } } -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=22264