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.dg/] [pr43305.c] - Rev 309
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-options "-Os -ffast-math" } */ extern int ilogbl(long double); extern int printf(const char *format, ...); __attribute__((noinline, noclone)) int foo(long double x) { return ilogbl(x); } int main() { printf("%d\n", foo(100)); return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log