Let tree_single_nonzero_warnv_p use range information
[official-gcc.git] / gcc / testsuite / gcc.dg / gomp / for-22.c
blob090e0f191a6f271927f5c5e25cd781d63f6522b6
1 /* { dg-do compile } */
2 /* { dg-options "-fopenmp -fdump-tree-ompexp" } */
4 extern void bar(unsigned long long);
6 void foo (unsigned long long n)
8 unsigned long long i;
10 #pragma omp for schedule(nonmonotonic:guided, 7)
11 for (i = 0; i < n; ++i)
12 bar(i);
15 /* { dg-final { scan-tree-dump-times "GOMP_loop_ull_nonmonotonic_guided_start" 1 "ompexp" } } */
16 /* { dg-final { scan-tree-dump-times "GOMP_loop_ull_nonmonotonic_guided_next" 1 "ompexp" } } */