Merge from mainline
[official-gcc.git] / libgomp / testsuite / libgomp.c / copyin-1.c
blob49c546004c83346bf5fcc755f1fbe1864b47ac40
1 /* { dg-do run } */
2 /* { dg-options "-O2" } */
3 /* { dg-require-effective-target tls_runtime } */
5 #include <omp.h>
6 #include <stdlib.h>
8 int thr = 32;
9 #pragma omp threadprivate (thr)
11 int
12 main (void)
14 int l = 0;
16 omp_set_dynamic (0);
17 omp_set_num_threads (6);
19 #pragma omp parallel copyin (thr) reduction (||:l)
21 l = thr != 32;
22 thr = omp_get_thread_num () + 11;
25 if (l || thr != 11)
26 abort ();
28 #pragma omp parallel reduction (||:l)
29 l = thr != omp_get_thread_num () + 11;
31 if (l)
32 abort ();
33 return 0;