From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 12229 invoked by alias); 27 Mar 2002 21:36:03 -0000 Mailing-List: contact gcc-prs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-prs-owner@gcc.gnu.org Received: (qmail 12196 invoked by uid 71); 27 Mar 2002 21:36:02 -0000 Date: Wed, 27 Mar 2002 13:36:00 -0000 Message-ID: <20020327213602.12195.qmail@sources.redhat.com> To: nobody@gcc.gnu.org Cc: gcc-prs@gcc.gnu.org, From: Tom Tromey Subject: Re: java/6071: GCJ does not compile a large (21417 lines) java source file Reply-To: Tom Tromey X-SW-Source: 2002-03/txt/msg01046.txt.bz2 List-Id: The following reply was made to PR java/6071; it has been noted by GNATS. From: Tom Tromey To: shroff@transeda.com Cc: gcc-gnats@gcc.gnu.org Subject: Re: java/6071: GCJ does not compile a large (21417 lines) java source file Date: 27 Mar 2002 15:02:56 -0700 >>>>> "Saurin" == Saurin B Shroff writes: Saurin> Due to proprietary reason, I cannot supply the java file, but Saurin> is there anything else I can do to help you debug the problem? I suppose you could try to run jc1 in the debugger and track down the actual infinite loop (assuming one exists) or other bug. Saurin> It seems that gcj is stuck in infinite loop in Saurin> "generate_bytecode_insns" routine. It could be. But note that generate_bytecode_insns is recursive. So it can appear on the stack many times without this indicating a bug. Tom