From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 19225 invoked by alias); 8 May 2002 20:46:51 -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 19185 invoked from network); 8 May 2002 20:46:46 -0000 Received: from unknown (HELO cygnus.com) (205.180.83.203) by sources.redhat.com with SMTP; 8 May 2002 20:46:46 -0000 Received: from redhat.com (reddwarf.sfbay.redhat.com [172.16.24.50]) by runyon.cygnus.com (8.8.7-cygnus/8.8.7) with ESMTP id NAA22436; Wed, 8 May 2002 13:46:03 -0700 (PDT) Message-ID: <3CD98B7A.A6CCBDCD@redhat.com> Date: Wed, 08 May 2002 13:46:00 -0000 From: Michael Snyder Organization: Red Hat, Inc. X-Accept-Language: en MIME-Version: 1.0 To: Jim Blandy CC: Elena Zannoni , Michael Snyder , gdb-patches@sources.redhat.com Subject: Re: [RFA] Add vector type flag to stabsread.c References: <200205062331.g46NV4k26237@reddwarf.sfbay.redhat.com> <15576.35004.495092.847403@localhost.redhat.com> Content-Type: multipart/mixed; boundary="------------A58B6D0FE3D75CF7C23FBC1F" X-SW-Source: 2002-05/txt/msg00229.txt.bz2 This is a multi-part message in MIME format. --------------A58B6D0FE3D75CF7C23FBC1F Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-length: 167 Jim Blandy wrote: > > Elena Zannoni writes: > > OK. > > Should the stabs doc be updated? Who controls that? > > Yes. Us. :) OK, how's this? --------------A58B6D0FE3D75CF7C23FBC1F Content-Type: text/plain; charset=us-ascii; name="vector.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="vector.patch" Content-length: 958 2002-05-08 Michael Snyder * stabs.texinfo (Attributes): Document new "vector" attribute. Index: stabs.texinfo =================================================================== RCS file: /cvs/src/src/gdb/doc/stabs.texinfo,v retrieving revision 1.5 diff -p -r1.5 stabs.texinfo *** stabs.texinfo 30 Dec 2001 06:25:16 -0000 1.5 --- stabs.texinfo 8 May 2002 20:36:35 -0000 *************** Indicate that this type is a string inst *** 287,292 **** --- 287,298 ---- or a bitstring instead of a set. It doesn't change the layout of the data being represented, but does enable the debugger to know which type it is. + + @item V + Indicate that this type is a vector instead of an array. The only + major difference between vectors and arrays is that vectors are + passed by value instead of by reference (vector coprocessor extension). + @end table All of this can make the string field quite long. All versions of GDB, --------------A58B6D0FE3D75CF7C23FBC1F--