]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gcc.dg/gomp/empty.c
[multiple changes]
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / gomp / empty.c
1 /* { dg-do compile } */
2 /* { dg-options "-O -fopenmp -fdump-tree-omplower" } */
3
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 "omplower"} } */
12 /* { dg-final { cleanup-tree-dump "omplower" } } */