aboutsummaryrefslogtreecommitdiff
path: root/lib/msun/amd64/Makefile.inc
Commit message (Collapse)AuthorAgeFilesLines
* Remove $FreeBSD$: one-line sh patternWarner Losh2023-08-231-1/+0
| | | | | | | Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/ Similar commit in main: (cherry picked from commit d0b2dbfa0ecf)
* Add asm versions of fmod(), fmodf() and fmodl() on amd64. Add asmBruce Evans2016-09-041-1/+2
| | | | | | | | | | | | versions of fmodf() amd fmodl() on i387. fmod is similar to remainder, and the C versions are 3 to 9 times slower than the asm versions on x86 for both, but we had the strange mixture of all 6 variants of remainder in asm and only 1 of 6 variants of fmod in asm. Notes: svn path=/head/; revision=305382
* Add assembly versions of remquol() and remainderl().David Schultz2008-03-301-2/+4
| | | | Notes: svn path=/head/; revision=177768
* Hook up sqrtl() to the build.David Schultz2008-03-021-1/+1
| | | | Notes: svn path=/head/; revision=176722
* Use hardware remainder on amd64 since it is 5 to 10 times faster thanBruce Evans2008-02-131-1/+2
| | | | | | | software remainder and is already used for remquo(). Notes: svn path=/head/; revision=176227
* Implement rintl(), nearbyintl(), lrintl(), and llrintl().David Schultz2008-01-141-3/+3
| | | | | | | Thanks to bde@ for feedback and testing of rintl(). Notes: svn path=/head/; revision=175309
* Add logbl(3) to libm.David Schultz2007-12-171-1/+2
| | | | Notes: svn path=/head/; revision=174698
* Add symbol versioning to libm.Daniel Eischen2006-03-271-0/+1
| | | | Notes: svn path=/head/; revision=157196
* More optimized math functions.David Schultz2005-04-161-1/+2
| | | | Notes: svn path=/head/; revision=145171
* Implement and document remquo() and remquof().David Schultz2005-03-251-1/+1
| | | | Notes: svn path=/head/; revision=144091
* Define the LDBL_PREC to be the number of significant bits in a longDavid Schultz2005-03-071-0/+1
| | | | | | | double's mantissa. Notes: svn path=/head/; revision=143208
* Move machine-dependent crud to its own makefile.David Schultz2005-02-041-0/+3
Notes: svn path=/head/; revision=141281