Merge from branches/gcc-4_8-branch up to rev 207411.
[official-gcc.git] / gcc-4_8-branch / gcc / testsuite / gcc.dg / gomp / pr58809.c
blob5dc02f65aa8707ca525fb2e36e17d06fbb38930f
1 /* PR middle-end/58809 */
2 /* { dg-do compile } */
3 /* { dg-options "-fopenmp -O" } */
5 int i;
6 #pragma omp threadprivate (i)
8 void foo()
10 _Complex int j;
11 #pragma omp parallel copyin (i) reduction (&&:j)