git: 37357e697d18 - stable/13 - msun: Fix typo in math_private.h comment
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 27 Jul 2023 17:11:23 UTC
The branch stable/13 has been updated by emaste: URL: https://cgit.FreeBSD.org/src/commit/?id=37357e697d18ef53fbfb8c3dc6c762dc5dd78245 commit 37357e697d18ef53fbfb8c3dc6c762dc5dd78245 Author: Steve Kargl <kargl@FreeBSD.org> AuthorDate: 2023-07-26 18:21:44 +0000 Commit: Ed Maste <emaste@FreeBSD.org> CommitDate: 2023-07-27 17:10:31 +0000 msun: Fix typo in math_private.h comment PR: 272738 MFC after: 3 days (cherry picked from commit f2c94ddd0ad79d972b6a707978cc09f3a8a6dbbf) --- lib/msun/src/math_private.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/msun/src/math_private.h b/lib/msun/src/math_private.h index 20ce7bd88464..33f790c13a6b 100644 --- a/lib/msun/src/math_private.h +++ b/lib/msun/src/math_private.h @@ -624,7 +624,7 @@ rnintf(__float_t x) * The complications for extra precision are smaller for rnintl() since it * can safely assume that the rounding precision has been increased from * its default to FP_PE on x86. We don't exploit that here to get small - * optimizations from limiting the rangle to double. We just need it for + * optimizations from limiting the range to double. We just need it for * the magic number to work with long doubles. ld128 callers should use * rnint() instead of this if possible. ld80 callers should prefer * rnintl() since for amd64 this avoids swapping the register set, while