blob: e236e3a3a39c0c9bbcfe9580516cd758e4fa72d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* PR optimization/8555 */
/* { dg-do compile } */
/* { dg-options "-O -ffast-math -funroll-loops" } */
/* { dg-options "-march=pentium3 -O -ffast-math -funroll-loops" { target i?86-*-* } } */
float foo (float *a, int i)
{
int j;
float x = a[j = i - 1], y;
for (j = i; --j >= 0; )
if ((y = a[j]) > x)
x = y;
return x;
}
|