Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git] / gcc / testsuite / gcc.dg / gomp / dump-new-function.c
blob2814260cf37e21691cac77d56a6f3d9a236b414d
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fopenmp -fdump-tree-gimple" } */
4 int
5 main (void)
7 #pragma omp parallel
9 extern void foo (void);
10 foo ();
12 return 0;
15 /* Check that new function does not end up in gimple dump. */
16 /* { dg-final { scan-tree-dump-not "main\\._omp_fn\\.0" "gimple" } } */