This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug tree-optimization/15643] [3.5 Regression] ICE in replace_ssa_names, at tree-ssa-copy.c:73
- From: "belyshev at lubercy dot com" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 25 May 2004 22:52:49 -0000
- Subject: [Bug tree-optimization/15643] [3.5 Regression] ICE in replace_ssa_names, at tree-ssa-copy.c:73
- References: <20040525044500.15643.lucier@math.purdue.edu>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Additional Comments From belyshev at lubercy dot com 2004-05-25 22:52 -------
Testcase in java:
cat > boog.java << EOF
public class boog {
class abcd {
}
static void defineProperty (Object destination)
{
}
public static void defineClass ()
{
abcd ctor = new abcd ();
boolean b = true;
Object dest = b ? ctor : null;
defineProperty(dest);
}
}
EOF
gcj boog.java -O2 -fno-tree-dominator-opts
boog.java: In class `boog':
boog.java: In method `boog.defineClass()':
boog.java:10: internal compiler error: in replace_ssa_names, at tree-ssa-copy.c:73
Please submit a full bug report,
with preprocessed source if appropriate.
See <URL:http://gcc.gnu.org/bugs.html> for instructions.
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15643