Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.c-torture / execute / loop-3.c
blobe314a01b1f181a8912e122917de68d9f3690f231
1 #include <limits.h>
3 int n = 0;
5 g (i)
7 n++;
10 f (m)
12 int i;
13 i = m;
16 g (i * INT_MAX / 2);
18 while (--i > 0);
21 main ()
23 f (4);
24 if (n != 4)
25 abort ();
26 exit (0);