aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@suse.de>2016-02-23 16:27:56 +0100
committerAdhemerval Zanella <adhemerval.zanella@linaro.com>2016-02-25 10:04:18 -0300
commit591b7e37e6be2a2d6672b683ba1191095b10d6d5 (patch)
tree6f5d3f360d39fbeb110000f4c78d2eb25542fa24
parentf0029f1bb31ebce6454e1704ecac1a95b75e1e16 (diff)
downloadglibc-591b7e37e6be2a2d6672b683ba1191095b10d6d5.tar
glibc-591b7e37e6be2a2d6672b683ba1191095b10d6d5.tar.gz
glibc-591b7e37e6be2a2d6672b683ba1191095b10d6d5.tar.bz2
glibc-591b7e37e6be2a2d6672b683ba1191095b10d6d5.zip
Don't use long double math functions if NO_LONG_DOUBLE
-rw-r--r--ChangeLog5
-rw-r--r--math/test-math-isinff.cc7
2 files changed, 11 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 7895446c54..d1a4520860 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2016-02-24 Andreas Schwab <schwab@suse.de>
+
+ * math/test-math-isinff.cc (do_test): Only call isinfl and isnanl
+ if !NO_LONG_DOUBLE.
+
2016-02-22 Roland McGrath <roland@hack.frob.com>
* sysdeps/arm/nacl/libc.abilist (GLIBC_2.23): Add GLIBC_2.23,
diff --git a/math/test-math-isinff.cc b/math/test-math-isinff.cc
index 195d753f0e..ecff1dc46a 100644
--- a/math/test-math-isinff.cc
+++ b/math/test-math-isinff.cc
@@ -30,12 +30,17 @@ do_test (void)
header fix this test will not compile. */
if (isinff (1.0f)
|| !isinff (INFINITY)
+#ifndef NO_LONG_DOUBLE
|| isinfl (1.0L)
|| !isinfl (INFINITY)
+#endif
|| isnanf (2.0f)
|| !isnanf (NAN)
+#ifndef NO_LONG_DOUBLE
|| isnanl (2.0L)
- || !isnanl (NAN))
+ || !isnanl (NAN)
+#endif
+ )
{
printf ("FAIL: Failed to call is* functions.\n");
exit (1);