URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.dg/] [20030204-1.c] - Rev 823
Go to most recent revision | Compare with Previous | Blame | View Log
/* 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-*-* x86_64-*-* } && ilp32 } } } */ 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; }
Go to most recent revision | Compare with Previous | Blame | View Log