From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 15478 invoked by alias); 19 Dec 2001 00:06:01 -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 15464 invoked by uid 71); 19 Dec 2001 00:06:01 -0000 Date: Tue, 18 Dec 2001 16:06:00 -0000 Message-ID: <20011219000601.15463.qmail@sources.redhat.com> To: nobody@gcc.gnu.org Cc: gcc-prs@gcc.gnu.org, From: Tom Tromey Subject: Re: java/4914: Internal compiler error in emit_move_insn, at expr.c:2713 Reply-To: Tom Tromey X-SW-Source: 2001-12/txt/msg00986.txt.bz2 List-Id: The following reply was made to PR java/4914; it has been noted by GNATS. From: Tom Tromey To: Daniel.Bonniot@inria.fr Cc: gcc-gnats@gcc.gnu.org Subject: Re: java/4914: Internal compiler error in emit_move_insn, at expr.c:2713 Date: 18 Dec 2001 17:04:30 -0700 >>>>> "Daniel" == Daniel Bonniot writes: Daniel> Gcj emits an internal error while compiling Daniel> the following class. Daniel> The code is not generated by javac but nicec (a different Daniel> language compiling to bytecodes), but AFAIK it is valid. Daniel> Therefore I cannot provide a java source file. I looked at this today. I agree the bytecode is fine. The problem is that gcj, in java/expr.c, is using emit_move_insn to try to emit a move between two items with different modes. This is invalid. I don't know enough to suggest a fix though :-( Tom