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
This commit is contained in:
Ed Maste 2024-06-11 20:23:44 -04:00
parent 703768a235
commit 92927b8bcf
2 changed files with 4 additions and 4 deletions

View File

@ -244,7 +244,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;
/*
@ -278,7 +278,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

@ -225,7 +225,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;
/*
@ -259,7 +259,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));