Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git] / gcc / testsuite / gcc.target / arm / ivopts.c
blob2bb6cc49308844beab773a73e3a5c911c82aa883
1 /* { dg-do assemble } */
2 /* { dg-options "-Os -fdump-tree-ivopts -save-temps" } */
4 void
5 tr5 (short array[], int n)
7 int x;
8 if (n > 0)
9 for (x = 0; x < n; x++)
10 array[x] = 0;
13 /* { dg-final { scan-tree-dump-times "PHI <" 1 "ivopts"} } */
14 /* { dg-final { object-size text <= 20 { target arm_thumb2 } } } */
15 /* { dg-final { object-size text <= 32 { target { arm_nothumb && { ! arm_iwmmxt_ok } } } } } */
16 /* { dg-final { object-size text <= 36 { target { arm_nothumb && arm_iwmmxt_ok } } } } */