From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 17835 invoked by alias); 12 Nov 2010 12:43:46 -0000 Received: (qmail 17826 invoked by uid 22791); 12 Nov 2010 12:43:46 -0000 X-SWARE-Spam-Status: No, hits=-1.5 required=5.0 tests=AWL,BAYES_00,TW_BJ,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from mtagate5.uk.ibm.com (HELO mtagate5.uk.ibm.com) (194.196.100.165) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 12 Nov 2010 12:43:41 +0000 Received: from d06nrmr1806.portsmouth.uk.ibm.com (d06nrmr1806.portsmouth.uk.ibm.com [9.149.39.193]) by mtagate5.uk.ibm.com (8.13.1/8.13.1) with ESMTP id oACChZrq010058 for ; Fri, 12 Nov 2010 12:43:35 GMT Received: from d06av11.portsmouth.uk.ibm.com (d06av11.portsmouth.uk.ibm.com [9.149.37.252]) by d06nrmr1806.portsmouth.uk.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id oACChbZO3809508 for ; Fri, 12 Nov 2010 12:43:37 GMT Received: from d06av11.portsmouth.uk.ibm.com (loopback [127.0.0.1]) by d06av11.portsmouth.uk.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id oACChX1J008699 for ; Fri, 12 Nov 2010 05:43:35 -0700 Received: from leonard.localnet (dyn-9-152-224-23.boeblingen.de.ibm.com [9.152.224.23]) by d06av11.portsmouth.uk.ibm.com (8.14.4/8.13.1/NCO v10.0 AVin) with ESMTP id oACChRpP008584 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 12 Nov 2010 05:43:33 -0700 From: Ken Werner To: pmuldoon@redhat.com Subject: Re: [patch] Add visible flag to breakpoints. Date: Fri, 12 Nov 2010 12:43:00 -0000 User-Agent: KMail/1.13.5 (Linux/2.6.35-22-generic-pae; KDE/4.5.1; i686; ; ) Cc: gdb-patches@sourceware.org, Pedro Alves , Tom Tromey , dan@codesourcery.com, eliz@gnu.org References: <201010312107.38336.pedro@codesourcery.com> In-Reply-To: MIME-Version: 1.0 Content-Type: Multipart/Mixed; boundary="Boundary-00=_vZT3MQj0OuBih3i" Message-Id: <201011121343.27553.ken@linux.vnet.ibm.com> X-IsSubscribed: yes Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2010-11/txt/msg00153.txt.bz2 --Boundary-00=_vZT3MQj0OuBih3i Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-length: 276 On Thursday, November 11, 2010 3:36:21 pm Phil Muldoon wrote: > So committed, thanks This change introduces a small typo in the spu-tdep.c file which prevents the gdb from compiling if --target=spu is enabled. The attached patch fixes this issue. Ok to apply? Regards Ken --Boundary-00=_vZT3MQj0OuBih3i Content-Type: text/x-patch; charset="UTF-8"; name="typo.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="typo.patch" Content-length: 660 ChangeLog: 2010-11-12 Ken Werner * spu-tdep.c (spu_catch_start): Fix typo. Index: gdb/spu-tdep.c =================================================================== RCS file: /cvs/src/src/gdb/spu-tdep.c,v retrieving revision 1.63 diff -p -u -r1.63 spu-tdep.c --- gdb/spu-tdep.c 11 Nov 2010 14:11:52 -0000 1.63 +++ gdb/spu-tdep.c 12 Nov 2010 12:37:49 -0000 @@ -1896,7 +1896,7 @@ spu_catch_start (struct objfile *objfile 0 /* ignore_count */, AUTO_BOOLEAN_FALSE /* pending_break_support */, NULL /* ops */, 0 /* from_tty */, 1 /* enabled */, - 0 /* internal */);); + 0 /* internal */); } --Boundary-00=_vZT3MQj0OuBih3i--