diff options
Diffstat (limited to 'winsup/mingw/mingwex/math/log1pf.S')
-rw-r--r-- | winsup/mingw/mingwex/math/log1pf.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/mingw/mingwex/math/log1pf.S b/winsup/mingw/mingwex/math/log1pf.S index 1d9949f2a..b5b1acb7e 100644 --- a/winsup/mingw/mingwex/math/log1pf.S +++ b/winsup/mingw/mingwex/math/log1pf.S @@ -27,7 +27,7 @@ _log1pf: fnstsw fld %st sahf - jc 3f // in case x is NaN or ħInf + jc 3f /* in case x is NaN or ħInf */ 4: fabs fcomps limit @@ -41,7 +41,7 @@ _log1pf: 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 |