Fix unused warnings.
[official-gcc/graphite-test-results.git] / gcc / testsuite / gcc.c-torture / execute / pr42142.c
blob43cf57e7b308ae7cfcf8597c66aa23e8247f9991
1 int __attribute__((noinline,noclone))
2 sort(int L)
4 int end[2] = { 10, 10, }, i=0, R;
5 while (i<2)
7 R = end[i];
8 if (L<R)
10 end[i+1] = 1;
11 end[i] = 10;
12 ++i;
14 else
15 break;
17 return i;
19 extern void abort (void);
20 int main()
22 if (sort (5) != 1)
23 abort ();
24 return 0;