diff options
author | Adhemerval Zanella <azanella@linux.vnet.ibm.com> | 2015-01-28 06:10:41 -0500 |
---|---|---|
committer | Adhemerval Zanella <azanella@linux.vnet.ibm.com> | 2015-03-03 10:01:49 -0500 |
commit | 85b290451e4d3ab460a57f1c5966c5827ca807ca (patch) | |
tree | c394f048661ba9134a0a9a1fc321022f38e7347b /math/Makefile | |
parent | a0af371c25ac1f215cf0db64e54cbb9a1b51f78c (diff) | |
download | glibc-85b290451e4d3ab460a57f1c5966c5827ca807ca.tar glibc-85b290451e4d3ab460a57f1c5966c5827ca807ca.tar.gz glibc-85b290451e4d3ab460a57f1c5966c5827ca807ca.tar.bz2 glibc-85b290451e4d3ab460a57f1c5966c5827ca807ca.zip |
powerpc: Fix inline feraiseexcept, feclearexcept macros
This patch fixes the inline feraiseexcept and feclearexcept macros for
powerpc by casting the input argument to integer before operation on it.
It fixes BZ#17776.
Diffstat (limited to 'math/Makefile')
-rw-r--r-- | math/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/math/Makefile b/math/Makefile index fec7627c73..3904e41a3c 100644 --- a/math/Makefile +++ b/math/Makefile @@ -90,7 +90,8 @@ tests = test-matherr test-fenv atest-exp atest-sincos atest-exp2 basic-test \ test-misc test-fpucw test-fpucw-ieee tst-definitions test-tgmath \ test-tgmath-ret bug-nextafter bug-nexttoward bug-tgmath1 \ test-tgmath-int test-tgmath2 test-powl tst-CMPLX tst-CMPLX2 test-snan \ - test-fenv-tls test-fenv-preserve test-fenv-return $(tests-static) + test-fenv-tls test-fenv-preserve test-fenv-return test-fenvinline \ + $(tests-static) tests-static = test-fpucw-static test-fpucw-ieee-static # We do the `long double' tests only if this data type is available and # distinct from `double'. |