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/17624] [4.0 Regression] ICE: SSA corruption (another one)


------- Additional Comments From belyshev at lubercy dot com  2004-09-23 00:13 -------
// here is slightly more reduced testcase:

extern void foo (void);

int c;

void foo (int n)
{
  int j = 0;
  try
    {
      for(;;)
	{
	  foo ();
	  if (j ++ == n)
	    break;
	  foo ();
	}
    }
  catch (...)
    {
      c = j;
    }
}


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17624


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