------- Comment #1 from pinskia at gcc dot gnu dot org  2006-11-23 23:04 -------
Actually you can reproduce the same ICE (with the same backtrace) with C++
code:
extern void bar (int);

void
foo (int n)
{
  int i;
#pragma omp parallel for schedule(dynamic)
  for (i = 0; i < n; i++)
    {
      throw 0;
    }
}


So this is not specific to Objective-C any more.


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
          Component|objc                        |middle-end
            Summary|Objective-C exceptions vs   |OpenMP vs always throw in a
                   |OpenMP                      |loop


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

Reply via email to