PR libfortran/64770 Segfault when trying to open existing file with status="new".
[official-gcc.git] / gcc / testsuite / gcc.dg / gomp / pr25874.c
blob2afd02ea326ca6d8316478469513e9e52f09950d
1 /* { dg-options "-O -fopenmp" } */
3 void foo();
5 inline void bar()
7 int i;
8 for ( i=0; i<1; ++i )
9 #pragma omp parallel
10 foo();
13 void baz()
15 #pragma omp parallel
16 bar();