This is the mail archive of the java@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

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/




Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]