about summary refs log tree commit diff
path: root/src/math/x86_64/asinl.s
Commit message (Collapse)AuthorAgeFilesLines
* math: fix x86 asin accuracynsz2012-04-041-3/+3
| | | | | 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
* x86_64 math asm, long double functions onlyRich Felker2012-03-201-0/+12
this has not been tested heavily, but it's known to at least assemble and run in basic usage cases. it's nearly identical to the corresponding i386 code, and thus expected to be just as correct or just as incorrect.