Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / copy-headers-5.c
blob3d9940558cbe94b020c9af70c8986647883074d0
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-ch2-details" } */
4 int is_sorted(int *a, int n)
6 for (int i = 0; i < n - 1; i++)
7 if (a[i] > a[i + 1])
8 return 0;
9 return 1;
12 /* Verify we apply loop header copying but only copy the IV test and
13 not the alternate exit test. */
15 /* { dg-final { scan-tree-dump "is now do-while loop" "ch2" } } */
16 /* { dg-final { scan-tree-dump-times " if " 3 "ch2" } } */