]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - math/test-nearbyint-except-2.c
Remove NO_LONG_DOUBLE conditionals in libm tests (bug 21607).
[thirdparty/glibc.git] / math / test-nearbyint-except-2.c
index 217b6ad2e9b3e0c226b8ec256f87c41e12cf4e99..43de189ffea0ed0c23a5b9540116ecf1c9a15aeb 100644 (file)
@@ -46,9 +46,7 @@ NAME (void)                                                           \
 
 TEST_FUNC (float_test, float, f)
 TEST_FUNC (double_test, double, )
-#ifndef NO_LONG_DOUBLE
 TEST_FUNC (ldouble_test, long double, l)
-#endif
 
 static int
 do_test (void)
@@ -61,10 +59,8 @@ do_test (void)
   int result = float_test ();
   feenableexcept (FE_INEXACT);
   result |= double_test ();
-#ifndef NO_LONG_DOUBLE
   feenableexcept (FE_INEXACT);
   result |= ldouble_test ();
-#endif
   return result;
 }