diff options
Diffstat (limited to 'winsup/mingw/mingwex/math/log1p.S')
-rw-r--r-- | winsup/mingw/mingwex/math/log1p.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/mingw/mingwex/math/log1p.S b/winsup/mingw/mingwex/math/log1p.S index a38816cb3..12e223c8c 100644 --- a/winsup/mingw/mingwex/math/log1p.S +++ b/winsup/mingw/mingwex/math/log1p.S @@ -27,7 +27,7 @@ _log1p: fnstsw fld %st sahf - jc 3f // in case x is NaN or ħInf + jc 3f /* in case x is NaN or ħInf */ 4: fabs fcompl limit @@ -41,7 +41,7 @@ _log1p: 2: fyl2xp1 ret -3: jp 4b // in case x is ħInf +3: jp 4b /* in case x is ħInf */ fstp %st(1) fstp %st(1) ret |