This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
simple Java testcase causes "uncognized insn"
- From: Per Bothner <per at bothner dot com>
- To: java at gcc dot gnu dot org
- Date: Sun, 14 Sep 2003 14:21:40 -0700
- Subject: simple Java testcase causes "uncognized insn"
I created Bugzilla 12280 which as a simple testcase
distilled from Kawa. It causes Kawa to fail to build,
though it used to work (some time ago). It's beyond
my competence but I really need it fixed for Kawa.
Just compile this class:
/* gcj -c -O Dup.java */
class Type { int size; }
public class Dup
{
public void emitDup (int size, int offset) { }
public void emitDup (Type type)
{ emitDup(type.size > 4 ? 2 : 1, 0); }
}
--
--Per Bothner
per@bothner.com http://per.bothner.com/