URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.target/] [i386/] [math-torture/] [lfloor.c] - Rev 861
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do assemble } */ long testlf (float x) { return __builtin_lfloorf (x); } long testl (double x) { return __builtin_lfloor (x); } long testll (long double x) { return __builtin_lfloorl (x); } long long testllf (float x) { return __builtin_llfloorf (x); } long long testll_ (double x) { return __builtin_llfloor (x); } long long testlll (long double x) { return __builtin_llfloorl (x); }
Go to most recent revision | Compare with Previous | Blame | View Log