URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.target/] [i386/] [pr23098.c] - Rev 154
Go to most recent revision | Compare with Previous | Blame | View Log
/* PR rtl-optimization/23098 */ /* { dg-do compile } */ /* { dg-options "-O2 -fPIC" } */ /* { dg-final { scan-assembler-not "\.LC\[0-9\]" } } */ /* { dg-require-effective-target ilp32 } */ double foo (float); double f1 (void) { return foo (1.0); } double f2 (void) { return foo (0.0); } void f3 (float *x, float t) { *x = 0.0 + t; }
Go to most recent revision | Compare with Previous | Blame | View Log