| Commit message (Expand) | Author | Age | Files | Lines |
| * | math: fix x86 asin, atan, exp, log1p to raise underflow•••underflow is raised by an inexact subnormal float store,
since subnormal operations are slow, check the underflow
flag and skip the store if it's already raised
| Szabolcs Nagy | 2013-08-15 | 1 | -1/+22 |
| * | math: fix x86 asin accuracy•••use (1-x)*(1+x) instead of (1-x*x) in asin.s
the later can be inaccurate with upward rounding when x is close to 1
| nsz | 2012-04-04 | 1 | -2/+3 |
| * | asm for inverse trig functions•••unlike trig functions, these are easy to do in asm because they do not
involve (arbitrary-precision) argument reduction. fpatan automatically
takes care of domain issues, and in asin and acos, fsqrt takes care of
them for us.
| Rich Felker | 2012-03-19 | 1 | -0/+23 |