1 /* { dg-do compile } */
2 /* { dg-options "-O -fopenmp -fdump-tree-ompexp" } */
3 
main()4 main()
5 {
6 #pragma omp parallel
7     {;}
8 }
9 
10 /* There should not be a GOMP_parallel_start call.  */
11 /* { dg-final { scan-tree-dump-times "GOMP_parallel_start" 0 "ompexp"} } */
12 /* { dg-final { cleanup-tree-dump "ompexp" } } */
13