[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

[Bug libgcj/1373] recursion stress test causes segmentation fault




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

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.



Reply to: