From patchwork Tue Sep 9 13:59:18 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: James Hogan X-Patchwork-Id: 2702 Received: (qmail 17395 invoked by alias); 9 Sep 2014 13:59:41 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 17379 invoked by uid 89); 9 Sep 2014 13:59:37 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-4.0 required=5.0 tests=AWL, BAYES_00, RP_MATCHES_RCVD, SPF_PASS autolearn=ham version=3.3.2 X-HELO: mailapp01.imgtec.com Received: from mailapp01.imgtec.com (HELO mailapp01.imgtec.com) (195.59.15.196) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 09 Sep 2014 13:59:31 +0000 Received: from KLMAIL01.kl.imgtec.org (unknown [192.168.5.35]) by Websense Email Security Gateway with ESMTPS id 2C6E6DBC305B6 for ; Tue, 9 Sep 2014 14:59:25 +0100 (IST) Received: from LEMAIL01.le.imgtec.org (192.168.152.62) by KLMAIL01.kl.imgtec.org (192.168.5.35) with Microsoft SMTP Server (TLS) id 14.3.195.1; Tue, 9 Sep 2014 14:59:27 +0100 Received: from jhogan-linux.le.imgtec.org (192.168.154.101) by LEMAIL01.le.imgtec.org (192.168.152.62) with Microsoft SMTP Server (TLS) id 14.3.195.1; Tue, 9 Sep 2014 14:59:26 +0100 From: James Hogan To: CC: James Hogan Subject: [PATCH] Remove trad_frame_set_reg_unknown declaration Date: Tue, 9 Sep 2014 14:59:18 +0100 Message-ID: <1410271158-8556-1-git-send-email-james.hogan@imgtec.com> MIME-Version: 1.0 X-IsSubscribed: yes The trad_frame_set_reg_unknown declaration was added in commit 0db9b4b70969 (March 2004), but apparently never defined or referenced. gdb/ChangeLog: * trad-frame.h (trad_frame_set_reg_unknown): Remove declaration. --- gdb/ChangeLog | 4 ++++ gdb/trad-frame.h | 2 -- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 9d3f392554b5..4297a8b49921 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2014-09-09 James Hogan + + * trad-frame.h (trad_frame_set_reg_unknown): Remove declaration. + 2014-09-08 Doug Evans PR 17247 diff --git a/gdb/trad-frame.h b/gdb/trad-frame.h index d75b9c922532..9ec95a898579 100644 --- a/gdb/trad-frame.h +++ b/gdb/trad-frame.h @@ -43,8 +43,6 @@ CORE_ADDR trad_frame_get_this_base (struct trad_frame_cache *this_trad_cache); void trad_frame_set_reg_realreg (struct trad_frame_cache *this_trad_cache, int regnum, int realreg); -void trad_frame_set_reg_unknown (struct trad_frame_cache *this_trad_cache, - int regnum, CORE_ADDR addr); void trad_frame_set_reg_addr (struct trad_frame_cache *this_trad_cache, int regnum, CORE_ADDR addr); void trad_frame_set_reg_value (struct trad_frame_cache *this_cache,