URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [dfp/] [dfp-except.h] - Rev 713
Go to most recent revision | Compare with Previous | Blame | View Log
/* Use undocumented functions in libgcc to clear and test dummy floating point exception flags. That functionality is in libgcc just for testing purposes. If fesetexcept and feclearexcept are available, use those instead. */ /* Get names of exception flags. */ #include <fenv.h> extern void __dfp_clear_except (int); #define DFP_CLEAR_EXCEPT(M) __dfp_clear_except(M) extern int __dfp_test_except (int); #define DFP_TEST_EXCEPT(M) __dfp_test_except(M)
Go to most recent revision | Compare with Previous | Blame | View Log