From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 20503 invoked by alias); 8 Jul 2004 23:44:24 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 20474 invoked from network); 8 Jul 2004 23:44:23 -0000 Received: from unknown (HELO mx1.redhat.com) (66.187.233.31) by sourceware.org with SMTP; 8 Jul 2004 23:44:23 -0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.10/8.12.10) with ESMTP id i68NiNe1027079 for ; Thu, 8 Jul 2004 19:44:23 -0400 Received: from zenia.home.redhat.com (porkchop.devel.redhat.com [172.16.58.2]) by int-mx1.corp.redhat.com (8.11.6/8.11.6) with ESMTP id i68NiL016576; Thu, 8 Jul 2004 19:44:22 -0400 To: gdb-patches@sources.redhat.com Subject: PATCH: delete unused variable From: Jim Blandy Date: Thu, 08 Jul 2004 23:44:00 -0000 Message-ID: User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-SW-Source: 2004-07/txt/msg00083.txt.bz2 Committed as obvious. 2004-07-08 Jim Blandy * rs6000-tdep.c (registers_powerpc_nofp): Unused; deleted. Index: gdb/rs6000-tdep.c =================================================================== RCS file: /cvs/src/src/gdb/rs6000-tdep.c,v retrieving revision 1.215 diff -c -p -r1.215 rs6000-tdep.c *** gdb/rs6000-tdep.c 20 Jun 2004 17:18:06 -0000 1.215 --- gdb/rs6000-tdep.c 8 Jul 2004 23:39:39 -0000 *************** static const struct reg registers_powerp *** 2176,2189 **** PPC_ALTIVEC_REGS }; - /* PowerPC UISA - a PPC processor as viewed by user-level - code, but without floating point registers. */ - static const struct reg registers_powerpc_nofp[] = - { - COMMON_UISA_NOFP_REGS, - PPC_UISA_SPRS - }; - /* IBM PowerPC 403. */ static const struct reg registers_403[] = { --- 2176,2181 ----