This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug java/12280] New: unrecognizable insn on simple Java code
- From: "bothner at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 14 Sep 2003 21:09:19 -0000
- Subject: [Bug java/12280] New: unrecognizable insn on simple Java code
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12280
Summary: unrecognizable insn on simple Java code
Product: gcc
Version: 3.4
Status: UNCONFIRMED
Severity: critical
Priority: P3
Component: java
AssignedTo: unassigned at gcc dot gnu dot org
ReportedBy: bothner at gcc dot gnu dot org
CC: gcc-bugs at gcc dot gnu dot org
GCC build triplet: i686-pc-linux-gnu
GCC host triplet: i686-pc-linux-gnu
GCC target triplet: i686-pc-linux-gnu
jc1 crashes with an "unrecognizable insn" when compiling the
following code with -O:
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); }
}
This is simplified from Kawa, which fails to build
because of this.
This has been failing for a while on the mainline, but
it used to work.