From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 9416 invoked by alias); 16 Feb 2010 22:02:51 -0000 Received: (qmail 9283 invoked by uid 22791); 16 Feb 2010 22:02:50 -0000 X-SWARE-Spam-Status: No, hits=-7.8 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_HI,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 16 Feb 2010 22:02:46 +0000 Received: from int-mx08.intmail.prod.int.phx2.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.21]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id o1GM2irf029835 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Tue, 16 Feb 2010 17:02:44 -0500 Received: from qcore.mollernet.net (vpn-234-95.phx2.redhat.com [10.3.234.95]) by int-mx08.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id o1GM2i7I020651 for ; Tue, 16 Feb 2010 17:02:44 -0500 Message-ID: <4B7B1603.2030608@redhat.com> Date: Tue, 16 Feb 2010 22:02:00 -0000 From: Chris Moller User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1b3pre) Gecko/20090513 Fedora/3.0-2.3.beta2.fc11 Thunderbird/3.0b2 MIME-Version: 1.0 To: gdb-patches@sourceware.org Subject: Re: beta patch for PR 9065 References: <4B7AE477.9060606@redhat.com> <20100216215313.GA4858@caradoc.them.org> In-Reply-To: <20100216215313.GA4858@caradoc.them.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-IsSubscribed: yes Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2010-02/txt/msg00405.txt.bz2 On 02/16/10 16:53, Daniel Jacobowitz wrote: > >> @@ -1897,6 +1923,8 @@ >> {"struct", STRUCT, OP_NULL, 0}, >> {"signed", SIGNED_KEYWORD, OP_NULL, 0}, >> {"sizeof", SIZEOF, OP_NULL, 0}, >> + {"typeid", TYPEID, OP_NULL, 0}, >> + {"name", NAMELIT, OP_NULL, 0}, >> {"double", DOUBLE_KEYWORD, OP_NULL, 0}, >> {"false", FALSEKEYWORD, OP_NULL, 1}, >> {"class", CLASS, OP_NULL, 1}, >> > > I bet adding "name" to this list will break any expression with "name" > in it, like "print name". > Yeah, that occurred to me about 30 seconds after I sent the patch out. :-)