about summary refs log tree commit diff
path: root/src/math/x86_64/expl.s
Commit message (Collapse)AuthorAgeFilesLines
* remove potentially PIC-incompatible relocations from x86_64 and x32 asmRich Felker2015-04-181-1/+1
| | | | analogous to commit 8ed66ecbcba1dd0f899f22b534aac92a282f42d5 for i386.
* fix build of x86_64 expl assemblyRich Felker2013-08-161-1/+1
| | | | | apparently this label change was not carried over when adapting the changes from the i386 version.
* math: fix x86 expl.s to raise underflow and clean up special case handlingSzabolcs Nagy2013-08-151-22/+15
|
* math: x86_64 version of expl, fixed some comments in the i386 versionSzabolcs Nagy2012-12-161-0/+108
|
* math: move x86_64 exp2l implementation to exp2l.s from expl.sSzabolcs Nagy2012-12-161-83/+0
|
* math: fix exp.s on i386 and x86_64 so the exception flags are correctnsz2012-08-081-19/+17
| | | | exp(inf), exp(-inf), exp(nan) used to raise wrong flags
* x86_64 math asm, long double functions onlyRich Felker2012-03-201-0/+85
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.