https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71371
Bug ID: 71371
Summary: ICE with OpenMP taskloop and addressable iterator
Product: gcc
Version: 6.0
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: c
Assignee: unassigned at gcc dot gnu.org
Reporter: jakub at gcc dot gnu.org
Target Milestone: ---
void baz (int *);
void
foo (void)
{
int i;
#pragma omp taskloop
for (i = 0; i < 100; i++)
baz (&i);
}
ICEs with -fopenmp.
