Daily bump.
[official-gcc.git] / libgomp / testsuite / libgomp.c / shared-3.c
blob494a970ad8f71ced6209b31d6eeb232285fc7261
1 /* { dg-do run } */
3 void abort (void);
5 int main()
7 int x;
8 int *p;
10 p = &x;
12 #pragma omp parallel
14 if (p != &x)
15 abort ();
18 return 0;