Skip to content

Commit 92927b8

Browse files
committed
msun: update Clang bug reference in fma test
LLVM bugzilla bug 8100 became issue #8472 with the migration to GitHub. llvm/llvm-project#8472
1 parent 703768a commit 92927b8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

lib/msun/src/s_fma.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ fma(double x, double y, double z)
244244
zs = copysign(DBL_MIN, zs);
245245

246246
fesetround(FE_TONEAREST);
247-
/* work around clang bug 8100 */
247+
/* work around clang issue #8472 */
248248
volatile double vxs = xs;
249249

250250
/*
@@ -278,7 +278,7 @@ fma(double x, double y, double z)
278278
* rounding modes.
279279
*/
280280
fesetround(oround);
281-
/* work around clang bug 8100 */
281+
/* work around clang issue #8472 */
282282
volatile double vrlo = r.lo;
283283
adj = vrlo + xy.lo;
284284
return (ldexp(r.hi + adj, spread));

lib/msun/src/s_fmal.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ fmal(long double x, long double y, long double z)
225225
zs = copysignl(LDBL_MIN, zs);
226226

227227
fesetround(FE_TONEAREST);
228-
/* work around clang bug 8100 */
228+
/* work around clang issue #8472 */
229229
volatile long double vxs = xs;
230230

231231
/*
@@ -259,7 +259,7 @@ fmal(long double x, long double y, long double z)
259259
* rounding modes.
260260
*/
261261
fesetround(oround);
262-
/* work around clang bug 8100 */
262+
/* work around clang issue #8472 */
263263
volatile long double vrlo = r.lo;
264264
adj = vrlo + xy.lo;
265265
return (ldexpl(r.hi + adj, spread));

0 commit comments

Comments
 (0)