Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / pr81388-1.c
blob85c00e56144d542cc52e8687717f2667af33fefb
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fno-strict-overflow -fdump-tree-ivcanon-details" } */
4 void bar();
5 void foo(char *dst)
7 char *const end = dst;
8 do {
9 bar();
10 dst += 2;
11 } while (dst < end);
14 /* { dg-final { scan-tree-dump " zero if " "ivcanon" } } */