From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 8048 invoked by alias); 19 Feb 2005 02:35:06 -0000 Mailing-List: contact java-prs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: java-prs-owner@gcc.gnu.org Received: (qmail 7801 invoked by uid 48); 19 Feb 2005 02:35:04 -0000 Date: Sat, 19 Feb 2005 18:27:00 -0000 Message-ID: <20050219023504.7787.qmail@sourceware.org> From: "bonniot at users dot sf dot net" To: java-prs@gcc.gnu.org In-Reply-To: <20050218145225.20056.bonniot@users.sf.net> References: <20050218145225.20056.bonniot@users.sf.net> Reply-To: gcc-bugzilla@gcc.gnu.org Subject: [Bug java/20056] [4.0 regression] 'verification failed: incompatible type on stack' with --indirect-dispatch X-Bugzilla-Reason: CC X-SW-Source: 2005-q1/txt/msg00441.txt.bz2 List-Id: ------- Additional Comments From bonniot at users dot sf dot net 2005-02-19 02:35 ------- Since bytecode classes cannot be put in the testsuite at the moment, here is a Java source that, when first compiled to bytecode, exercises this bug during the bytecode->native compilation, still with --indirect-dispatch. class Field { int x; Field(int x) {} Field(Field f) { this(f.x = 0); } } -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20056