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