Merge from mainline
[official-gcc.git] / gcc / testsuite / gcc.dg / gomp / pr25874.c
blob568e1f04f884debedc96d8fb40c004e880db3964
1 void foo();
3 inline void bar()
5 int i;
6 for ( i=0; i<1; ++i )
7 #pragma omp parallel
8 foo();
11 void baz()
13 #pragma omp parallel
14 bar();