Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.c-torture / execute / 930921-1.c
blob12e04e3095461db9be096256e3dc504794a85bdb
1 f (x)
2 unsigned x;
4 return (unsigned) (((unsigned long long) x * 0xAAAAAAAB) >> 32) >> 1;
7 main ()
9 unsigned i;
11 for (i = 0; i < 10000; i++)
12 if (f (i) != i / 3)
13 abort ();
14 exit (0);