From 67e971f18ffc9b3ea57cbccba54d5203d1e6a988 Mon Sep 17 00:00:00 2001 From: Thomas Schwinge Date: Thu, 28 Feb 2013 17:12:25 +0100 Subject: Better distinguish between NaN/qNaN/sNaN. --- math/test-misc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'math/test-misc.c') diff --git a/math/test-misc.c b/math/test-misc.c index 2df5d1e61f..c13bafa117 100644 --- a/math/test-misc.c +++ b/math/test-misc.c @@ -1074,7 +1074,7 @@ main (void) } } - /* Special NaNs in x86 long double. Test for scalbl. */ + /* Special qNaNs in x86 long double. Test for scalbl. */ { union { @@ -1087,12 +1087,12 @@ main (void) r = scalbl (u.d, 0.0); if (!isnan (r)) { - puts ("scalbl(NaN, 0) does not return NaN"); + puts ("scalbl (qNaN, 0) does not return NaN"); result = 1; } else if (memcmp (&r, &u.d, sizeof (double)) != 0) { - puts ("scalbl(NaN, 0) does not return the same NaN"); + puts ("scalbl (qNaN, 0) does not return the same NaN"); result = 1; } } -- cgit 1.4.1