tcc-65816/test/tests/loop-11.c
2017-06-09 13:52:12 +02:00

21 lines
206 B
C

static int a[199];
static void
foo ()
{
int i;
for (i = 198; i >= 0; i--)
a[i] = i;
}
int
main ()
{
int i;
foo ();
for (i = 0; i < 199; i++)
if (a[i] != i)
abort ();
return 0;
}