PR tree-optimization/81303
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / pr81388-2.c
blob71fd2890f3d2d7f426134a2324a17877850d165b
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-ivcanon-details" } */
4 void bar();
5 void foo(unsigned dst)
7 unsigned end = dst;
8 do {
9 bar();
10 dst += 2;
11 } while (dst < end);
14 /* { dg-final { scan-tree-dump-times " zero if " 1 "ivcanon" } } */