Daily bump.
[official-gcc.git] / libgomp / testsuite / libgomp.c / pr32362-3.c
blob11a0a0a81dd0660b6a3363fa071e21733ff0edd3
1 /* PR middle-end/32362 */
2 /* { dg-do run } */
4 #include <omp.h>
5 #include <stdlib.h>
7 int a = 2;
9 int
10 main ()
12 int n[4] = { -1, -1, -1, -1 };
13 int b = 4;
14 omp_set_num_threads (4);
15 omp_set_dynamic (0);
16 omp_set_nested (1);
17 #pragma omp parallel private(b)
19 b = omp_get_thread_num ();
20 #pragma omp parallel firstprivate(a)
22 a = (omp_get_thread_num () + a) + 1;
23 if (b == omp_get_thread_num ())
24 n[omp_get_thread_num ()] = a + (b << 4);
27 if (n[0] != 3)
28 abort ();
29 if (n[3] != -1
30 && (n[1] != 0x14 || n[2] != 0x25 || n[3] != 0x36))
31 abort ();
32 return 0;