From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 13611 invoked by alias); 2 Jun 2004 18:24:48 -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 13604 invoked from network); 2 Jun 2004 18:24:47 -0000 Received: from unknown (HELO mx1.redhat.com) (66.187.233.31) by sourceware.org with SMTP; 2 Jun 2004 18:24:47 -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 i52IOli5004254 for ; Wed, 2 Jun 2004 14:24:47 -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 i52IOk009432; Wed, 2 Jun 2004 14:24:46 -0400 To: gdb-patches@sources.redhat.com Subject: PATCH: remove unused local variable From: Jim Blandy Date: Wed, 02 Jun 2004 18:24: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-06/txt/msg00031.txt.bz2 Committed as obvious. 2004-06-02 Jim Blandy * ppc-linux-nat.c (store_register): Remove unused local 'offset'. Index: gdb/ppc-linux-nat.c =================================================================== RCS file: /cvs/src/src/gdb/ppc-linux-nat.c,v retrieving revision 1.41 diff -c -p -r1.41 ppc-linux-nat.c *** gdb/ppc-linux-nat.c 2 Jun 2004 18:17:05 -0000 1.41 --- gdb/ppc-linux-nat.c 2 Jun 2004 18:23:55 -0000 *************** store_register (int tid, int regno) *** 407,413 **** /* This isn't really an address. But ptrace thinks of it as one. */ CORE_ADDR regaddr = ppc_register_u_addr (regno); int i; - unsigned int offset; /* Offset of registers within the u area. */ char buf[MAX_REGISTER_SIZE]; if (altivec_register_p (regno)) --- 407,412 ----