[Bug middle-end/33880] ICE: in extract_omp_for_data, at omp-low.c:162

2008-02-06 Thread rguenth at gcc dot gnu dot org
--- Comment #7 from rguenth at gcc dot gnu dot org 2008-02-06 20:36 --- *** Bug 35108 has been marked as a duplicate of this bug. *** -- rguenth at gcc dot gnu dot org changed: What|Removed |Added ---

[Bug middle-end/33880] ICE: in extract_omp_for_data, at omp-low.c:162

2008-01-25 Thread jakub at gcc dot gnu dot org
--- Comment #6 from jakub at gcc dot gnu dot org 2008-01-25 12:55 --- Fixed. -- jakub at gcc dot gnu dot org changed: What|Removed |Added Status|ASSIGNED

[Bug middle-end/33880] ICE: in extract_omp_for_data, at omp-low.c:162

2008-01-25 Thread jakub at gcc dot gnu dot org
--- Comment #5 from jakub at gcc dot gnu dot org 2008-01-25 12:55 --- Subject: Bug 33880 Author: jakub Date: Fri Jan 25 12:54:42 2008 New Revision: 131825 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=131825 Log: PR middle-end/33880 * tree-nested.c (walk_omp_for

[Bug middle-end/33880] ICE: in extract_omp_for_data, at omp-low.c:162

2008-01-25 Thread jakub at gcc dot gnu dot org
--- Comment #4 from jakub at gcc dot gnu dot org 2008-01-25 10:04 --- Yes. Have a fix, now need to write some more testcases. -- jakub at gcc dot gnu dot org changed: What|Removed |Added

[Bug middle-end/33880] ICE: in extract_omp_for_data, at omp-low.c:162

2008-01-13 Thread burnus at gcc dot gnu dot org
--- Comment #3 from burnus at gcc dot gnu dot org 2008-01-13 21:54 --- Jakub, is there any chance that it can still get fixed for 4.3.0? -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=33880

[Bug middle-end/33880] ICE: in extract_omp_for_data, at omp-low.c:162

2007-11-18 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2007-11-19 05:37 --- Confirmed. Another nested function with openmp interaction case. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added ---

[Bug middle-end/33880] ICE: in extract_omp_for_data, at omp-low.c:162

2007-10-24 Thread jakub at gcc dot gnu dot org
--- Comment #1 from jakub at gcc dot gnu dot org 2007-10-24 13:23 --- /* PR middle-end/33880 */ /* { dg-do compile } */ /* { dg-options "-O2 -fopenmp" } */ int foo (void) { int i = 0; void bar (void) { i++; } bar (); #pragma omp parallel for for (i = 0; i < 10; i++) ;