This is the mail archive of the
java-prs@gcc.gnu.org
mailing list for the Java project.
[Bug libgcj/1373] recursion stress test causes segmentation fault
- From: "pinskia at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: java-prs at gcc dot gnu dot org
- Date: 23 Apr 2006 16:18:23 -0000
- Subject: [Bug libgcj/1373] recursion stress test causes segmentation fault
- References: <bug-1373-3604@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Comment #13 from pinskia at gcc dot gnu dot org 2006-04-23 16:18 -------
A better testcase comes from PR 27268 which seg faults at all optimizations
level currently (though this case can also be optimized out to be an infinite
loop really):
public class test
{
public test()
{
test t = new test();
}
public static void main(String argv[])
{
new test();
}
}
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=1373