Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.dg / pr24820.c
blob0482ca3211805a665fdb887d2cffcd2faf3ef119
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -ffast-math" } */
4 double floor (double);
5 double bar (double sum)
7 int i;
8 for (i = 0; i < 256; i++)
9 sum += floor (0.5 + (i - 128));
10 return sum;