URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [graphite/] [pr42205-2.c] - Rev 826
Compare with Previous | Blame | View Log
/* { dg-options "-O1 -funsafe-math-optimizations -floop-interchange" } */ double f(double x) { double y = 0.0; int i; for (i = 0; i < 8; i++) { y += x * i; } return y; }