URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.target/] [i386/] [pr24055.c] - Rev 378
Go to most recent revision | Compare with Previous | Blame | View Log
/* PR target/24055 */ /* Testcase reduced by Serge Belyshev */ /* { dg-do compile } */ /* { dg-options "-O2 -ffast-math" } */ extern double rint(double); void foo_1 (int *p, double x) { *p = rint (x); } void foo_2 (long long *p, double x) { *p = rint (x); } int foo_3 (double x) { return rint (x); } long long foo_4 (double x) { return rint (x); }
Go to most recent revision | Compare with Previous | Blame | View Log