simple Java testcase causes "uncognized insn"
Per Bothner
per@bothner.com
Sun Sep 14 21:27:00 GMT 2003
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/
More information about the Java
mailing list