From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 13018 invoked by alias); 12 Jul 2004 22:01:28 -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 13004 invoked from network); 12 Jul 2004 22:01:27 -0000 Received: from unknown (HELO mx1.redhat.com) (66.187.233.31) by sourceware.org with SMTP; 12 Jul 2004 22:01:27 -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 i6CM1Re1012816 for ; Mon, 12 Jul 2004 18:01:27 -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 i6CM1P018438; Mon, 12 Jul 2004 18:01:26 -0400 To: gdb-patches@sources.redhat.com Subject: RFA: Add enum constant for number of Altivec registers From: Jim Blandy Date: Mon, 12 Jul 2004 22:01: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/msg00124.txt.bz2 To be used in an upcoming patch. 2004-07-12 Jim Blandy * ppc-tdep.h (ppc_num_vrs): New enum constant. *** gdb/ppc-tdep.h 2004-06-30 02:06:17.000000000 -0500 --- gdb/ppc-tdep.h 2004-07-12 16:56:48.000000000 -0500 *************** struct gdbarch_tdep *** 174,180 **** enum { ppc_num_gprs = 32, /* 32 general-purpose registers */ ! ppc_num_fprs = 32 /* 32 floating-point registers */ }; #endif --- 174,181 ---- enum { ppc_num_gprs = 32, /* 32 general-purpose registers */ ! ppc_num_fprs = 32, /* 32 floating-point registers */ ! ppc_num_vrs = 32 /* 32 Altivec vector registers */ }; #endif