From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 31277 invoked by alias); 15 Jul 2014 12:13:16 -0000 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 Received: (qmail 31208 invoked by uid 89); 15 Jul 2014 12:13:12 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.3 required=5.0 tests=AWL,BAYES_00,RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: e06smtp17.uk.ibm.com Received: from e06smtp17.uk.ibm.com (HELO e06smtp17.uk.ibm.com) (195.75.94.113) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-SHA encrypted) ESMTPS; Tue, 15 Jul 2014 12:13:11 +0000 Received: from /spool/local by e06smtp17.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Tue, 15 Jul 2014 13:13:07 +0100 Received: from d06dlp01.portsmouth.uk.ibm.com (9.149.20.13) by e06smtp17.uk.ibm.com (192.168.101.147) with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted; Tue, 15 Jul 2014 13:13:04 +0100 Received: from b06cxnps4076.portsmouth.uk.ibm.com (d06relay13.portsmouth.uk.ibm.com [9.149.109.198]) by d06dlp01.portsmouth.uk.ibm.com (Postfix) with ESMTP id 7087117D8059 for ; Tue, 15 Jul 2014 13:14:40 +0100 (BST) Received: from d06av07.portsmouth.uk.ibm.com (d06av07.portsmouth.uk.ibm.com [9.149.37.248]) by b06cxnps4076.portsmouth.uk.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id s6FCD3M412845228 for ; Tue, 15 Jul 2014 12:13:04 GMT Received: from d06av07.portsmouth.uk.ibm.com (localhost [127.0.0.1]) by d06av07.portsmouth.uk.ibm.com (8.14.4/8.14.4/NCO v10.0 AVout) with ESMTP id s6FCD3LN024382 for ; Tue, 15 Jul 2014 08:13:03 -0400 Received: from br87z6lw.de.ibm.com (dyn-9-152-212-196.boeblingen.de.ibm.com [9.152.212.196]) by d06av07.portsmouth.uk.ibm.com (8.14.4/8.14.4/NCO v10.0 AVin) with ESMTP id s6FCD25D024352; Tue, 15 Jul 2014 08:13:02 -0400 From: Andreas Arnez To: "Ulrich Weigand" Cc: gdb-patches@sourceware.org, qinwei@sunnorth.com.cn (Qinwei) Subject: Re: [PATCH v2 10/13] SCORE: Fill 'collect_regset' in regset structure. References: <201407150952.s6F9qn7G018798@d06av02.portsmouth.uk.ibm.com> Date: Tue, 15 Jul 2014 12:25:00 -0000 In-Reply-To: <201407150952.s6F9qn7G018798@d06av02.portsmouth.uk.ibm.com> (Ulrich Weigand's message of "Tue, 15 Jul 2014 11:52:49 +0200 (CEST)") Message-ID: <87iomyes6p.fsf@br87z6lw.de.ibm.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-TM-AS-MML: disable X-Content-Scanned: Fidelis XPS MAILER x-cbid: 14071512-0542-0000-0000-0000000A0626 X-IsSubscribed: yes X-SW-Source: 2014-07/txt/msg00371.txt.bz2 On Tue, Jul 15 2014, Ulrich Weigand wrote: > Andreas Arnez wrote: > >> diff --git a/gdb/score-tdep.h b/gdb/score-tdep.h >> index 02a334e..cef0e6a 100644 >> --- a/gdb/score-tdep.h >> +++ b/gdb/score-tdep.h >> @@ -32,6 +32,7 @@ enum gdb_regnum >> SCORE_RA_REGNUM = 3, >> SCORE_A0_REGNUM = 4, >> SCORE_AL_REGNUM = 7, >> + SCORE_EPC_REGNUM = 37, >> SCORE_PC_REGNUM = 49, >> }; > > This doesn't appear to be used anywhere? Right. This might be a left-over from an earlier version of the patch, related to the special handling required for PC and EPC. Removed.