From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 27939 invoked by alias); 7 Jul 2005 16:48:44 -0000 Mailing-List: contact gcc-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-owner@gcc.gnu.org Received: (qmail 27914 invoked by uid 22791); 7 Jul 2005 16:48:40 -0000 Received: from mx1.redhat.com (HELO mx1.redhat.com) (66.187.233.31) by sourceware.org (qpsmtpd/0.30-dev) with ESMTP; Thu, 07 Jul 2005 16:48:40 +0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11/8.12.11) with ESMTP id j67GmaeH003973; Thu, 7 Jul 2005 12:48:36 -0400 Received: from pobox.toronto.redhat.com (pobox.toronto.redhat.com [172.16.14.4]) by int-mx1.corp.redhat.com (8.11.6/8.11.6) with ESMTP id j67GmaV09770; Thu, 7 Jul 2005 12:48:36 -0400 Received: from topo.toronto.redhat.com (vpn50-71.rdu.redhat.com [172.16.50.71]) by pobox.toronto.redhat.com (8.12.8/8.12.8) with ESMTP id j67GmY1M030926; Thu, 7 Jul 2005 12:48:35 -0400 Received: from topo.toronto.redhat.com (localhost.localdomain [127.0.0.1]) by topo.toronto.redhat.com (8.13.4/8.13.4) with ESMTP id j67GmUg7030390; Thu, 7 Jul 2005 12:48:30 -0400 Received: (from dnovillo@localhost) by topo.toronto.redhat.com (8.13.4/8.13.4/Submit) id j67GmRQO030389; Thu, 7 Jul 2005 12:48:27 -0400 Date: Thu, 07 Jul 2005 16:48:00 -0000 From: Diego Novillo To: Michael Tegtmeyer Cc: Daniel Berlin , gcc@gcc.gnu.org Subject: Re: Existing tree functionality? Message-ID: <20050707164827.GA30007@topo.toronto.redhat.com> References: <1120749653.7568.1.camel@IBM-82ZWS052TEN.watson.ibm.com> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.1i X-SW-Source: 2005-07/txt/msg00279.txt.bz2 On Thu, Jul 07, 2005 at 12:40:11PM -0400, Michael Tegtmeyer wrote: > In bar, 'i' is not global but is not passed in via arguments either. > referenced_vars contains the 'this' ptr. Is there anything existing that > will obtain 'i' as an external variable w.r.t. bar? > 'i' is not a standalone variable, it's a field of struct foo. 'this' is a PARM_DECL. 'this->i' is external to bar. Diego.