diff options
Diffstat (limited to 'math/test-nearbyint-except.c')
-rw-r--r-- | math/test-nearbyint-except.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/math/test-nearbyint-except.c b/math/test-nearbyint-except.c index e33846c1d0..16daaf82c9 100644 --- a/math/test-nearbyint-except.c +++ b/math/test-nearbyint-except.c @@ -69,18 +69,14 @@ 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) { int result = float_test (); result |= double_test (); -#ifndef NO_LONG_DOUBLE result |= ldouble_test (); -#endif if (!any_supported) return 77; return result; |