aboutsummaryrefslogtreecommitdiff
path: root/lib/libc/softfloat/bits64
Commit message (Collapse)AuthorAgeFilesLines
* Remove $FreeBSD$: one-line .c patternWarner Losh2023-08-231-2/+0
| | | | | | | Remove /^[\s*]*__FBSDID\("\$FreeBSD\$"\);?\s*\n/ Similar commit in main: (cherry picked from commit 1d386b48a555)
* Remove $FreeBSD$: one-line .c comment patternWarner Losh2023-08-231-1/+0
| | | | | | | Remove /^/[*/]\s*\$FreeBSD\$.*\n/ Similar commit in main: (cherry picked from commit 2a63c3be1582)
* Add implementations for clog(3), clogf(3), and clog(3).Konstantin Belousov2018-05-131-1/+1
| | | | | | | | | PR: 216863 Submitted by: bde, Steven G. Kargl <sgk@troutmask.apl.washington.edu> MFC after: 2 weeks Notes: svn path=/head/; revision=333577
* Conditionalize the __floatunsisf and __floatunsidf functions, added inDavid Schultz2012-01-201-0/+4
| | | | | | | | | NetBSD's rev 1.6 of this file, on !defined(SOFTFLOAT_FOR_GCC). These functions are provided by libgcc, so we don't need them. This should unbreak mips. Notes: svn path=/head/; revision=230380
* Merge in the latest SoftFloat changes from NetBSD. (NetBSD isn't theDavid Schultz2012-01-202-5/+100
| | | | | | | | | | original vendor, but we're using their heavily modified version.) This brings in functions for long double emulation (both extended and quad formats), which may be useful for testing, and also for replacing libc/sparc64/fpu/. Notes: svn path=/head/; revision=230363
* Convert softfloat to use the standard exception flag and rounding macrosDavid Schultz2012-01-161-2/+2
| | | | | | | | | in fenv.h instead of the non-standard and incomplete ones in ieeefp.h. Thanks to Ian Lepore for testing this patch. Notes: svn path=/head/; revision=230189
* Import the softfloat emulation library, needed for FreeBSD/arm right now.Olivier Houchard2004-05-142-0/+6246
It should become useless when gcc 3.4 will be imported, as libgcc from gcc 3.4 contains this bits for arm. Notes: svn path=/head/; revision=129203