[Bug c++/26084] [gomp-branch] ICE (segfault) on C++ OpenMP coce

2006-02-04 Thread martin at mpa-garching dot mpg dot de
--- Comment #2 from martin at mpa-garching dot mpg dot de 2006-02-04 11:31 --- Reduced testcase: template struct arr { long s; T *d; arr(long sz) : s(sz), d (s>0 ? new T[s] : 0) {} ~arr() { delete[] d; } T &operator[] (int n) {return d[n];} }; void map2alm (const double

[Bug c++/26084] [gomp-branch] ICE (segfault) on C++ OpenMP coce

2006-02-02 Thread martin at mpa-garching dot mpg dot de
--- Comment #1 from martin at mpa-garching dot mpg dot de 2006-02-02 23:48 --- Created an attachment (id=10774) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=10774&action=view) unreduced test case -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26084