From mboxrd@z Thu Jan 1 00:00:00 1970 From: "rmathew@gcc.gnu.org" To: java-prs@gcc.gnu.org Subject: [Bug java/8608] segmentation fault on compiling bad program Date: Wed, 02 Feb 2005 20:06:00 -0000 Message-id: <20050207130645.17877.qmail@sourceware.org> References: <20021116043603.8608.165635@bugs.debian.org> X-SW-Source: 2005-q1/msg00276.html List-Id: ------- Additional Comments From rmathew at gcc dot gnu dot org 2005-02-07 13:06 ------- The simplest testcase that reproduces this bug with the current mainline is: class Foo { void bar() { int a; int i; for(i=a;;); } } If the "int i" is removed and the for loop is changed to "for(int i=a;;);", the ICE disappears. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=8608