1998-05-20 07:26  H.J. Lu  <hjl@gnu.org>

	* math/libm-test.c (hypot_test): Fix a tyypo.
This commit is contained in:
Ulrich Drepper 1998-05-20 15:33:37 +00:00
parent 93c3d288af
commit 9639d01449
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
1998-05-20 07:26 H.J. Lu <hjl@gnu.org>
* math/libm-test.c (hypot_test): Fix a tyypo.
1998-05-20 Ulrich Drepper <drepper@cygnus.com>
* stdio-common/vfprintf.c: When precision is specified for %ls or

View File

@ -1987,7 +1987,7 @@ hypot_test (void)
check_isinfp_ext ("hypot (-inf, x) == +inf", FUNC(hypot) (minus_infty, a), a);
#ifndef TEST_INLINE
check_isinfp ("hypot (+inf, NaN) == +inf", FUNC(hypot) (minus_infty, nan_value));
check_isinfp ("hypot (+inf, NaN) == +inf", FUNC(hypot) (plus_infty, nan_value));
check_isinfp ("hypot (-inf, NaN) == +inf", FUNC(hypot) (minus_infty, nan_value));
#endif