URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [builtins-57.c] - Rev 298
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do link } */ /* { dg-options "-std=c99 -ffinite-math-only" } */ #include "builtins-config.h" extern void link_error (void); extern double floor (double); extern double trunc (double); extern double fabs (double); void test (double x) { #ifdef HAVE_C99_RUNTIME if (floor (fabs (x)) != trunc (fabs (x))) link_error (); #endif if (__builtin_lfloor (fabs (x)) != (long)fabs (x)) link_error (); } int main (void) { return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log