From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 12679 invoked by alias); 5 Mar 2002 22:06:02 -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 12607 invoked from network); 5 Mar 2002 22:06:01 -0000 Received: from unknown (HELO lacrosse.corp.redhat.com) (66.187.233.200) by sources.redhat.com with SMTP; 5 Mar 2002 22:06:01 -0000 Received: from tornado.toronto.redhat.com (IDENT:HkS57Mk7KrgulmyACbRqMnCLBVPf3FkC@tornado.toronto.redhat.com [172.16.14.228]) by lacrosse.corp.redhat.com (8.11.6/8.9.3) with ESMTP id g25M60s17244; Tue, 5 Mar 2002 17:06:00 -0500 Received: (from dnovillo@localhost) by tornado.toronto.redhat.com (8.11.6/8.11.2) id g25M5xA24934; Tue, 5 Mar 2002 17:05:59 -0500 Date: Tue, 05 Mar 2002 14:06:00 -0000 From: Diego Novillo To: Felix Deschamps Cc: gcc@gcc.gnu.org Subject: Re: intermediate representation Message-ID: <20020305220559.GC24052@tornado.toronto.redhat.com> References: <20020305212527.6238.qmail@web11208.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline In-Reply-To: <20020305212527.6238.qmail@web11208.mail.yahoo.com> User-Agent: Mutt/1.3.25i X-SW-Source: 2002-03/txt/msg00157.txt.bz2 On Tue, 05 Mar 2002, Felix Deschamps wrote: > To the gcc maintainers: > > I have started developing an application that will take as > input a code syntax tree that can then be used for code > browsing purposes. The nature of the application ( which is > The ast-optimizer-branch has experimental code to dump the trees in various formats. You may also find -fdump-tree useful. The ast branch adds a few more variations of -fdump-tree. Diego.