diff options
author | Thomas Schwinge <thomas@codesourcery.com> | 2013-02-28 13:03:37 +0100 |
---|---|---|
committer | Thomas Schwinge <thomas@codesourcery.com> | 2013-03-15 19:00:23 +0100 |
commit | e015e27b902c3e599370771dbbb0c5de0ec00f44 (patch) | |
tree | cc88d6ecd4e0f180629aaa3450033c4c8bd4ce67 /math/test-misc.c | |
parent | a57da9551698153f0e5261b419388004b039820f (diff) | |
download | glibc-e015e27b902c3e599370771dbbb0c5de0ec00f44.zip glibc-e015e27b902c3e599370771dbbb0c5de0ec00f44.tar.gz glibc-e015e27b902c3e599370771dbbb0c5de0ec00f44.tar.bz2 |
Fix copy'n'pastos.
Diffstat (limited to 'math/test-misc.c')
-rw-r--r-- | math/test-misc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/math/test-misc.c b/math/test-misc.c index d64e8e2..a4e70d6 100644 --- a/math/test-misc.c +++ b/math/test-misc.c @@ -1116,7 +1116,7 @@ main (void) } else if (fetestexcept (FE_UNDERFLOW)) { - puts ("scalbl(NaN, 0) raises underflow exception"); + puts ("scalbl (LDBL_MIN, 2147483647) raises underflow exception"); result = 1; } @@ -1134,7 +1134,7 @@ main (void) } else if (fetestexcept (FE_OVERFLOW)) { - puts ("scalbl(NaN, 0) raises overflow exception"); + puts ("scalbl (LDBL_MAX, -2147483647) raises overflow exception"); result = 1; } } |