diff options
author | Joseph Myers <joseph@codesourcery.com> | 2013-05-18 12:12:38 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2013-05-18 12:12:38 +0000 |
commit | 2ee094ff7524637304a00fcd25e1d3c9939a1fe5 (patch) | |
tree | be4af3670613bc6847b71d53c44ee09b099b3f09 /math/tst-CMPLX2.c | |
parent | 3779b5b64a7fd0366d66c76992296fa2cdd2bbf6 (diff) | |
download | glibc-2ee094ff7524637304a00fcd25e1d3c9939a1fe5.zip glibc-2ee094ff7524637304a00fcd25e1d3c9939a1fe5.tar.gz glibc-2ee094ff7524637304a00fcd25e1d3c9939a1fe5.tar.bz2 |
Don't disable CMPLXL macro for __NO_LONG_DOUBLE_MATH (bug 15488).
Diffstat (limited to 'math/tst-CMPLX2.c')
-rw-r--r-- | math/tst-CMPLX2.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/math/tst-CMPLX2.c b/math/tst-CMPLX2.c index 4b62f88..195ea7a 100644 --- a/math/tst-CMPLX2.c +++ b/math/tst-CMPLX2.c @@ -120,14 +120,12 @@ check_double (void) double, comparec, CMPLX); } -# ifndef NO_LONG_DOUBLE static void check_long_double (void) { ALL_CHECKS (0.0l, -0.0l, __builtin_nanl (""), __builtin_infl (), long double, comparecl, CMPLXL); } -# endif #endif static int @@ -136,9 +134,7 @@ do_test (void) #ifdef CMPLX check_float (); check_double (); -# ifndef NO_LONG_DOUBLE check_long_double (); -# endif #endif return result; |