From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 3487 invoked by alias); 9 Dec 2002 23:42:07 -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 3480 invoked from network); 9 Dec 2002 23:42:07 -0000 Received: from unknown (HELO mx1.redhat.com) (66.187.233.31) by sources.redhat.com with SMTP; 9 Dec 2002 23:42:07 -0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.11.6/8.11.6) with ESMTP id gB9NGbP21799 for ; Mon, 9 Dec 2002 18:16:37 -0500 Received: from pobox.corp.redhat.com (pobox.corp.redhat.com [172.16.52.156]) by int-mx1.corp.redhat.com (8.11.6/8.11.6) with ESMTP id gB9Ng5D28281; Mon, 9 Dec 2002 18:42:05 -0500 Received: from localhost.localdomain (vpn50-3.rdu.redhat.com [172.16.50.3]) by pobox.corp.redhat.com (8.11.6/8.11.6) with ESMTP id gB9Ng4q32091; Mon, 9 Dec 2002 18:42:05 -0500 Received: (from kev@localhost) by localhost.localdomain (8.11.6/8.11.6) id gB9NfwX05926; Mon, 9 Dec 2002 16:41:58 -0700 Date: Mon, 09 Dec 2002 15:42:00 -0000 From: Kevin Buettner Message-Id: <1021209234158.ZM5925@localhost.localdomain> In-Reply-To: Andrew Cagney "Re: [PATCH RFA/RFC] Address class support" (Oct 21, 7:49pm) References: <1021016004200.ZM22063@localhost.localdomain> <3DB49284.5040700@redhat.com> To: Andrew Cagney Subject: Re: [PATCH RFA/RFC] Address class support Cc: Jim Blandy , gdb-patches@sources.redhat.com MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-SW-Source: 2002-12/txt/msg00305.txt.bz2 On Oct 21, 7:49pm, Andrew Cagney wrote: > > Index: dwarf2read.c > > =================================================================== > > RCS file: /cvs/src/src/gdb/dwarf2read.c,v > > retrieving revision 1.68 > > diff -u -p -r1.68 dwarf2read.c > > --- dwarf2read.c 9 Oct 2002 04:43:49 -0000 1.68 > > +++ dwarf2read.c 16 Oct 2002 00:15:07 -0000 > > @@ -683,6 +683,10 @@ static struct complaint dwarf2_invalid_a > > { > > "invalid attribute class or form for '%s' in '%s'", 0, 0 > > }; > > +static struct complaint dwarf2_invalid_pointer_size = > > +{ > > + "invalid pointer size %d", 0, 0 > > +}; > > Please use the new complaint() interface. I've just submitted a patch to do this. Kevin