Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.c-torture / execute / arith-1.c
blob58df322e68aca188eed9cdfd72f25b93c47de6bb
1 unsigned
2 sat_add (unsigned i)
4 unsigned ret = i + 1;
5 if (ret < i)
6 ret = i;
7 return ret;
10 main ()
12 if (sat_add (~0U) != ~0U)
13 abort ();
14 exit (0);