diff options
author | Joseph Myers <joseph@codesourcery.com> | 2013-06-11 15:44:31 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2013-06-11 15:44:31 +0000 |
commit | f1d73d30dfe6b5ebec071542835f1b6c2b2f8fcf (patch) | |
tree | b64511b755c6c158911c9f19bce9e7ffabc80edc /ports | |
parent | 94aca5e740d6101f91002d027776252340f6abef (diff) | |
download | glibc-f1d73d30dfe6b5ebec071542835f1b6c2b2f8fcf.tar.gz glibc-f1d73d30dfe6b5ebec071542835f1b6c2b2f8fcf.tar.xz glibc-f1d73d30dfe6b5ebec071542835f1b6c2b2f8fcf.zip |
Add exception information to math-tests.h and use it in libm-test.inc.
Diffstat (limited to 'ports')
-rw-r--r-- | ports/ChangeLog.arm | 7 | ||||
-rw-r--r-- | ports/sysdeps/arm/math-tests.h | 6 |
2 files changed, 12 insertions, 1 deletions
diff --git a/ports/ChangeLog.arm b/ports/ChangeLog.arm index 6b0310b013..28ebfdf5ba 100644 --- a/ports/ChangeLog.arm +++ b/ports/ChangeLog.arm @@ -1,3 +1,10 @@ +2013-06-11 Joseph Myers <joseph@codesourcery.com> + + * sysdeps/arm/math-tests.h [__SOFTFP__] (EXCEPTION_TESTS_float): + Define to 0. + [__SOFTFP__] (EXCEPTION_TESTS_double): Likewise. + [__SOFTFP__] (EXCEPTION_TESTS_long_double): Likewise. + 2013-06-10 Joseph Myers <joseph@codesourcery.com> * sysdeps/arm/math-tests.h: New file. diff --git a/ports/sysdeps/arm/math-tests.h b/ports/sysdeps/arm/math-tests.h index 6b8e089d59..6fd17edca2 100644 --- a/ports/sysdeps/arm/math-tests.h +++ b/ports/sysdeps/arm/math-tests.h @@ -18,11 +18,15 @@ /* On systems with VFP support, but where glibc is built for soft-float, the libgcc functions used in libc and libm do not - support rounding modes, although fesetround succeeds. */ + support rounding modes, although fesetround succeeds, and do not + support exceptions. */ #ifdef __SOFTFP__ # define ROUNDING_TESTS_float(MODE) ((MODE) == FE_TONEAREST) # define ROUNDING_TESTS_double(MODE) ((MODE) == FE_TONEAREST) # define ROUNDING_TESTS_long_double(MODE) ((MODE) == FE_TONEAREST) +# define EXCEPTION_TESTS_float 0 +# define EXCEPTION_TESTS_double 0 +# define EXCEPTION_TESTS_long_double 0 #endif #include_next <math-tests.h> |