From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 18784 invoked by alias); 21 Jun 2004 15:17: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 18758 invoked from network); 21 Jun 2004 15:17:04 -0000 Received: from unknown (HELO cuddles.cambridge.redhat.com) (81.96.64.123) by sourceware.org with SMTP; 21 Jun 2004 15:17:04 -0000 Received: from redhat.com (localhost.localdomain [127.0.0.1]) by cuddles.cambridge.redhat.com (8.12.8/8.12.8) with ESMTP id i5LFF4VL009827; Mon, 21 Jun 2004 16:15:14 +0100 Received: (from aph@localhost) by redhat.com (8.12.8/8.12.8/Submit) id i5LFF3bf009823; Mon, 21 Jun 2004 16:15:03 +0100 From: Andrew Haley MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <16598.64375.217285.743094@cuddles.cambridge.redhat.com> Date: Mon, 21 Jun 2004 15:17:00 -0000 To: Daniel Jacobowitz Cc: Jeff Johnston , gdb-patches@sources.redhat.com, java@gcc.gnu.org, gcc-patches@gcc.gnu.org Subject: Re: [RFA]: Java Inferior Call Take 2 In-Reply-To: <20040619235857.GA18759@nevyn.them.org> References: <40A9264C.4060404@redhat.com> <20040617030603.GC23443@nevyn.them.org> <40D20494.2020608@redhat.com> <20040619235857.GA18759@nevyn.them.org> X-SW-Source: 2004-06/txt/msg00480.txt.bz2 D'oh! Andrew. 2004-06-21 Andrew Haley * java-gimplify.c (java_gimplify_block): set TREE_USED on the new block. Index: java-gimplify.c =================================================================== RCS file: /cvs/gcc/gcc/gcc/java/java-gimplify.c,v retrieving revision 1.4 diff -p -2 -c -r1.4 java-gimplify.c *** java-gimplify.c 14 May 2004 02:29:32 -0000 1.4 --- java-gimplify.c 21 Jun 2004 15:13:41 -0000 *************** java_gimplify_block (tree java_block) *** 178,181 **** --- 178,186 ---- block = make_node (BLOCK); BLOCK_VARS (block) = decls; + + /* The TREE_USED flag on a block determines whether the debug ouput + routines generate info for the variables in that block. */ + TREE_USED (block) = 1; + if (outer != NULL_TREE) {