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