Let tree_single_nonzero_warnv_p use range information
[official-gcc.git] / gcc / testsuite / gcc.dg / gomp / pr66633-1.c
blob3260ac7d52ecad96ccdc62ae364a80b8f70e8410
1 /* PR middle-end/66633 */
2 /* { dg-do compile } */
3 /* { dg-options "-fopenmp -O1" } */
5 void baz (int (*) ());
7 void
8 foo (void)
10 int i;
11 auto int bar (void) { return i; }
12 #pragma omp parallel
13 baz (bar);