Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.c-torture / execute / loop-11.c
blobab240cef34596a04faf054e56abd4ccdda76df9b
1 static int a[199];
3 static void
4 foo ()
6 int i;
7 for (i = 198; i >= 0; i--)
8 a[i] = i;
11 int
12 main ()
14 int i;
15 foo ();
16 for (i = 0; i < 199; i++)
17 if (a[i] != i)
18 abort ();
19 return 0;