This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC 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]

[Bug tree-optimization/15643] [3.5 Regression] ICE in replace_ssa_names, at tree-ssa-copy.c:73


------- 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


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