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 middle-end/29965] OpenMP vs always throw in a loop



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


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