Daily bump.
[official-gcc.git] / libgomp / testsuite / libgomp.c / pr26943-1.c
blob86c43f04bc9897e6f8b59f6e2b7867fd3e066635
1 /* PR c++/26943 */
2 /* { dg-do run } */
4 extern void abort (void);
5 extern void omp_set_dynamic (int);
6 int n = 6;
8 int
9 main (void)
11 int i, x = 0;
12 omp_set_dynamic (0);
13 #pragma omp parallel for num_threads (16) firstprivate (n) lastprivate (n) \
14 schedule (static, 1) reduction (+: x)
15 for (i = 0; i < 16; i++)
17 if (n != 6)
18 ++x;
19 n = i;
21 if (x || n != 15)
22 abort ();
23 return 0;