From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 27325 invoked by alias); 23 Mar 2009 14:28:21 -0000 Received: (qmail 27304 invoked by uid 22791); 23 Mar 2009 14:28:19 -0000 X-SWARE-Spam-Status: No, hits=-1.9 required=5.0 tests=AWL,BAYES_00,J_CHICKENPOX_42,SARE_MSGID_LONG40,SPF_PASS X-Spam-Check-By: sourceware.org Received: from smtp-out.google.com (HELO smtp-out.google.com) (216.239.45.13) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Mon, 23 Mar 2009 14:28:14 +0000 Received: from wpaz5.hot.corp.google.com (wpaz5.hot.corp.google.com [172.24.198.69]) by smtp-out.google.com with ESMTP id n2NESBcO028276; Mon, 23 Mar 2009 07:28:11 -0700 Received: from an-out-0708.google.com (ancc5.prod.google.com [10.100.29.5]) by wpaz5.hot.corp.google.com with ESMTP id n2NES93V030263; Mon, 23 Mar 2009 07:28:09 -0700 Received: by an-out-0708.google.com with SMTP id c5so1319348anc.37 for ; Mon, 23 Mar 2009 07:28:09 -0700 (PDT) MIME-Version: 1.0 Received: by 10.100.229.12 with SMTP id b12mr6543351anh.52.1237818488973; Mon, 23 Mar 2009 07:28:08 -0700 (PDT) In-Reply-To: <40d5b80e0903230717l4e1e7205y573dc9efb0aff140@mail.gmail.com> References: <40d5b80e0903050725y63226c82l3c0aa209f3457f29@mail.gmail.com> <40d5b80e0903230717l4e1e7205y573dc9efb0aff140@mail.gmail.com> Date: Mon, 23 Mar 2009 14:28:00 -0000 Message-ID: Subject: Re: -fdump-translation-unit does'nt dump as expected. From: Diego Novillo To: Praveen D V Cc: gcc@gcc.gnu.org, gcc-help@gcc.gnu.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-System-Of-Record: true X-IsSubscribed: yes Mailing-List: contact gcc-help-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-help-owner@gcc.gnu.org X-SW-Source: 2009-03/txt/msg00278.txt.bz2 On Mon, Mar 23, 2009 at 10:17, Praveen D V wrote: > With the new version I'm not able to get those dumps. > I just downloaded latest release and compiled it. =C2=A0It too doesn't du= mp > those typedef trees. > Any other pointers? You will need to modify the GCC dump routines yourself to dump the typedefs. Start with dump_node and the calls made to dump_begin (TDI_tu,...). As I said before, these routines change almost constantly and we don't even try to keep the output consistent. They are just debug instruments for us. Diego.