1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-18 02:19:39 +00:00

msun: update Clang bug reference in fma test

LLVM bugzilla bug 8100 became issue #8472 with the migration to GitHub.

https://github.com/llvm/llvm-project/issues/8472
(cherry picked from commit 92927b8bcf)
(cherry picked from commit 6cd4450c6c)
This commit is contained in:
Ed Maste 2024-06-11 20:23:44 -04:00
parent 335a234d72
commit dd7a4da0e9
2 changed files with 4 additions and 4 deletions

View File

@ -245,7 +245,7 @@ fma(double x, double y, double z)
zs = copysign(DBL_MIN, zs);
fesetround(FE_TONEAREST);
/* work around clang bug 8100 */
/* work around clang issue #8472 */
volatile double vxs = xs;
/*
@ -277,7 +277,7 @@ fma(double x, double y, double z)
* rounding modes.
*/
fesetround(oround);
/* work around clang bug 8100 */
/* work around clang issue #8472 */
volatile double vrlo = r.lo;
adj = vrlo + xy.lo;
return (ldexp(r.hi + adj, spread));

View File

@ -226,7 +226,7 @@ fmal(long double x, long double y, long double z)
zs = copysignl(LDBL_MIN, zs);
fesetround(FE_TONEAREST);
/* work around clang bug 8100 */
/* work around clang issue #8472 */
volatile long double vxs = xs;
/*
@ -258,7 +258,7 @@ fmal(long double x, long double y, long double z)
* rounding modes.
*/
fesetround(oround);
/* work around clang bug 8100 */
/* work around clang issue #8472 */
volatile long double vrlo = r.lo;
adj = vrlo + xy.lo;
return (ldexpl(r.hi + adj, spread));