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