Up to [cvs.NetBSD.org] / src / lib / libc / gen
Request diff between arbitrary revisions
Default branch: MAIN
Revision 1.6.4.2 / (download) - annotate - [select for diffs], Fri Apr 29 07:48:35 2011 UTC (2 years ago) by matt
Branch: matt-nb5-mips64
Changes since 1.6.4.1: +66 -0
lines
Diff to previous 1.6.4.1 (colored) to branchpoint 1.6 (colored)
Pull in true (128-bit) long double support for MIPS from -current.
Revision 1.6.4.1, Mon Jan 17 23:53:03 2011 UTC (2 years, 4 months ago) by matt
Branch: matt-nb5-mips64
Changes since 1.6: +0 -66
lines
FILE REMOVED
file isnanl_ieee754.c was added on branch matt-nb5-mips64 on 2011-04-29 07:48:35 +0000
Revision 1.6 / (download) - annotate - [select for diffs], Mon Jan 17 23:53:03 2011 UTC (2 years, 4 months ago) by matt
Branch: MAIN
CVS Tags: yamt-pagecache-base8,
yamt-pagecache-base7,
yamt-pagecache-base6,
yamt-pagecache-base5,
yamt-pagecache-base4,
yamt-pagecache-base3,
yamt-pagecache-base2,
yamt-pagecache-base,
yamt-pagecache,
tls-maxphys-nbase,
tls-maxphys-base,
tls-maxphys,
netbsd-6-base,
netbsd-6-1-RELEASE,
netbsd-6-1-RC4,
netbsd-6-1-RC3,
netbsd-6-1-RC2,
netbsd-6-1-RC1,
netbsd-6-1,
netbsd-6-0-RELEASE,
netbsd-6-0-RC2,
netbsd-6-0-RC1,
netbsd-6-0-2-RELEASE,
netbsd-6-0-1-RELEASE,
netbsd-6-0,
netbsd-6,
matt-nb6-plus-nbase,
matt-nb6-plus-base,
matt-nb6-plus,
cherry-xenmp-base,
cherry-xenmp,
bouyer-quota2-nbase,
bouyer-quota2-base,
bouyer-quota2,
agc-symver-base,
agc-symver,
HEAD
Branch point for: matt-nb5-mips64
Changes since 1.5: +16 -29
lines
Diff to previous 1.5 (colored)
Make the MIPS N32/N64 ABIs properly support 128-bit long doubles. With this
change, we should be fully conformant with the N32 and N64 ABIs.
Add {fpclassify,infinity,isnan,ininf,signbit}l_ieee754.c back to lib/libc/gen.
Note that infinityl_ieee754.c will work with either 64-bit, 80-bit, or
128-bit long doubles.
Revision 1.5, Fri Oct 24 00:58:02 2003 UTC (9 years, 7 months ago) by kleink
Branch: MAIN
CVS Tags: yamt-pf42-base4,
yamt-pf42-base3,
yamt-pf42-base2,
yamt-pf42-base,
yamt-pf42,
netbsd-5-base,
netbsd-5-2-RELEASE,
netbsd-5-2-RC1,
netbsd-5-2,
netbsd-5-1-RELEASE,
netbsd-5-1-RC4,
netbsd-5-1-RC3,
netbsd-5-1-RC2,
netbsd-5-1-RC1,
netbsd-5-1-2-RELEASE,
netbsd-5-1-1-RELEASE,
netbsd-5-1,
netbsd-5-0-RELEASE,
netbsd-5-0-RC4,
netbsd-5-0-RC3,
netbsd-5-0-RC2,
netbsd-5-0-RC1,
netbsd-5-0-2-RELEASE,
netbsd-5-0-1-RELEASE,
netbsd-5-0,
netbsd-5,
mjf-devfs2-base,
mjf-devfs2,
matt-nb5-pq3-base,
matt-nb5-pq3,
keiichi-mipv6-base,
keiichi-mipv6,
jym-xensuspend-nbase,
jym-xensuspend-base,
jym-xensuspend,
hpcarm-cleanup-nbase,
hpcarm-cleanup-base,
hpcarm-cleanup,
cube-autoconf-base,
cube-autoconf
Changes since 1.4: +2 -2
lines
FILE REMOVED
* Since there is no single portable IEEE 754 format for a long double, keep a common implementation of isinfl() and isnanl() to be used by platforms where `long double' == `double'; move others into machine-dependent code. * In due course, consider __VFP_FP__ on arm.
Revision 1.4 / (download) - annotate - [select for diffs], Thu Oct 23 00:04:57 2003 UTC (9 years, 7 months ago) by kleink
Branch: MAIN
Changes since 1.3: +2 -2
lines
Diff to previous 1.3 (colored)
Fix an RCS Id botch that occured when renaming.
Revision 1.3 / (download) - annotate - [select for diffs], Wed Oct 22 21:37:34 2003 UTC (9 years, 7 months ago) by kleink
Branch: MAIN
Changes since 1.2: +2 -2
lines
Diff to previous 1.2 (colored)
For a double-extended NaN, the exponent must be EXT_EXP_INFNAN, not DBL_EXP_INFNAN.
Revision 1.2 / (download) - annotate - [select for diffs], Thu Aug 7 16:42:52 2003 UTC (9 years, 9 months ago) by agc
Branch: MAIN
Changes since 1.1: +2 -6
lines
Diff to previous 1.1 (colored)
Move UCB-licensed code from 4-clause to 3-clause licence. Patches provided by Joel Baker in PR 22280, verified by myself.
Revision 1.1 / (download) - annotate - [select for diffs], Sat May 17 14:51:25 2003 UTC (10 years ago) by thorpej
Branch: MAIN
Add _isinfl() and _isnanl() routines, currently for internal use only.