1 /* { dg-options "-O2 -fgraphite-identity -fdump-tree-graphite-all" } */
6 foo (int bar
, int n
, int k
)
10 for (i
= 0; i
< n
; i
++)
17 /* There should be no loops generated for this testcase, instead we
18 should generate the following:
20 | if (k >= 0 && k < n)
25 /* { dg-final { scan-tree-dump-times "loop_1" 0 "graphite" } } */
26 /* { dg-final { cleanup-tree-dump "graphite" } } */