URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [pr17024-1.c] - Rev 754
Go to most recent revision | Compare with Previous | Blame | View Log
/* PR middle-end/17024 */ /* { dg-do compile } */ /* { dg-options "-funsafe-math-optimizations" } */ #define MAX2(a,b) (((a)>(b)) ? (a) : (b)) void C(double); void i(int k) { double c[1]; C(MAX2(0.,c[k])); return; }
Go to most recent revision | Compare with Previous | Blame | View Log