URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [dfp/] [dfp-except.h] - Rev 298
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)