From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 4366 invoked by alias); 1 Mar 2006 01:39:50 -0000 Received: (qmail 4355 invoked by uid 22791); 1 Mar 2006 01:39:48 -0000 X-Spam-Check-By: sourceware.org Received: from ausmtp04.au.ibm.com (HELO ausmtp04.au.ibm.com) (202.81.18.152) by sourceware.org (qpsmtpd/0.31) with ESMTP; Wed, 01 Mar 2006 01:39:46 +0000 Received: from sd0208e0.au.ibm.com (d23rh904.au.ibm.com [202.81.18.202]) by ausmtp04.au.ibm.com (8.12.10/8.13.5) with ESMTP id k211kp0R260350 for ; Wed, 1 Mar 2006 12:46:51 +1100 Received: from d23av01.au.ibm.com (d23av01.au.ibm.com [9.190.250.242]) by sd0208e0.au.ibm.com (8.12.10/NCO/VER6.8) with ESMTP id k211h0fC134054 for ; Wed, 1 Mar 2006 12:43:01 +1100 Received: from d23av01.au.ibm.com (loopback [127.0.0.1]) by d23av01.au.ibm.com (8.12.11/8.13.3) with ESMTP id k211dguO017770 for ; Wed, 1 Mar 2006 12:39:42 +1100 Received: from [9.181.133.108] ([9.181.133.108]) by d23av01.au.ibm.com (8.12.11/8.12.11) with ESMTP id k211dZBK017513; Wed, 1 Mar 2006 12:39:39 +1100 Date: Wed, 01 Mar 2006 01:39:00 -0000 From: Wu Zhou To: Daniel Jacobowitz cc: gdb@sourceware.org Subject: Re: New Fortran test failures In-Reply-To: <20060228025438.GA11899@nevyn.them.org> Message-ID: References: <20060227163318.GA20782@nevyn.them.org> <20060228025438.GA11899@nevyn.them.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-IsSubscribed: yes Mailing-List: contact gdb-help@sourceware.org; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sourceware.org X-SW-Source: 2006-03/txt/msg00001.txt.bz2 On Mon, 27 Feb 2006, Daniel Jacobowitz wrote: > On Mon, Feb 27, 2006 at 09:31:28PM -0500, Wu Zhou wrote: > > Here is the fix. OK to install? > > > > 2006-02-28 Wu Zhou > > > > * f-typeprint.c (f_type_print_base): Delete the redundant space. > > Yeah, this is fine. Thank you. Thanks. Committed. Here is what I just committed in. Index: ChangeLog =================================================================== RCS file: /cvs/src/src/gdb/ChangeLog,v retrieving revision 1.7622 diff -c -p -r1.7622 ChangeLog *** ChangeLog 28 Feb 2006 22:38:03 -0000 1.7622 --- ChangeLog 1 Mar 2006 01:35:29 -0000 *************** *** 1,3 **** --- 1,7 ---- + 2006-03-01 Wu Zhou + + * f-typeprint.c (f_type_print_base): Delete the redundant space. + 2006-02-28 Kevin Buettner * Makefile.in (mn10300-linux-tdep.o): Update dependencies. Index: f-typeprint.c =================================================================== RCS file: /cvs/src/src/gdb/f-typeprint.c,v retrieving revision 1.15 diff -c -p -r1.15 f-typeprint.c *** f-typeprint.c 24 Feb 2006 07:26:10 -0000 1.15 --- f-typeprint.c 1 Mar 2006 01:35:29 -0000 *************** f_type_print_base (struct type *type, st *** 416,422 **** the type name is, as recorded in the type itself. If there is no type name, then complain. */ if (TYPE_NAME (type) != NULL) ! fprintfi_filtered (level, stream, "%s ", TYPE_NAME (type)); else error (_("Invalid type code (%d) in symbol table."), TYPE_CODE (type)); break; --- 416,422 ---- the type name is, as recorded in the type itself. If there is no type name, then complain. */ if (TYPE_NAME (type) != NULL) ! fprintfi_filtered (level, stream, "%s", TYPE_NAME (type)); else error (_("Invalid type code (%d) in symbol table."), TYPE_CODE (type)); break; Regards - Wu Zhou