From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 18721 invoked by alias); 19 Dec 2002 02:16:04 -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 18694 invoked by uid 71); 19 Dec 2002 02:16:02 -0000 Date: Wed, 18 Dec 2002 18:16:00 -0000 Message-ID: <20021219021602.18692.qmail@sources.redhat.com> To: nobody@gcc.gnu.org Cc: gcc-prs@gcc.gnu.org, From: Tom Tromey Subject: Re: java/8741: gcj crashes when compiling the attached file Reply-To: Tom Tromey X-SW-Source: 2002-12/txt/msg00988.txt.bz2 List-Id: The following reply was made to PR java/8741; it has been noted by GNATS. From: Tom Tromey To: gbenson@redhat.com Cc: gcc-gnats@gcc.gnu.org Subject: Re: java/8741: gcj crashes when compiling the attached file Date: 18 Dec 2002 19:08:50 -0700 >>>>> "Gary" == Gary Benson writes: Gary> Number: 8741 Gary> Category: java Gary> Synopsis: gcj crashes when compiling the attached file I looked at this a little tonight. The proximate cause is that we are generating a RETURN_EXPR whose argument is not a MODIFY_EXPR setting the RESULT_DECL. We do this in maybe_build_thisn_access_method. Based on some preliminary debugging it looks like patch_return isn't being run for the RETURN_EXPR in question. patch_return is what builds the MODIFY_EXPR in ordinary circumstances. Tom