This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug java/20056] [4.0 regression] 'verification failed: incompatible type on stack' with --indirect-dispatch
- From: "bonniot at users dot sf dot net" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 19 Feb 2005 02:35:04 -0000
- Subject: [Bug java/20056] [4.0 regression] 'verification failed: incompatible type on stack' with --indirect-dispatch
- References: <20050218145225.20056.bonniot@users.sf.net>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- 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