summaryrefslogtreecommitdiff
path: root/perl.h
Commit message (Expand)AuthorAgeFilesLines
* Move the VC6 "broken-nan" define from win32.h to perl.h.Jarkko Hietaniemi2014-09-231-7/+6
* On VC6 (broken NaN compare) redefine Perl_isinf.Jarkko Hietaniemi2014-09-201-0/+7
* [perl #121983] #error with ro ops and no threadsFather Chrysostomos2014-09-201-0/+4
* quadmath NV formatted I/O.Jarkko Hietaniemi2014-09-191-0/+7
* quadmath interfaces and constantsJarkko Hietaniemi2014-09-191-50/+99
* Use the Perl_isfinite multiplication fallback last.Jarkko Hietaniemi2014-09-171-8/+5
* [perl #122788] broken nan on win32Jarkko Hietaniemi2014-09-161-3/+5
* Define Perl_isfinite only if not already defined.Jarkko Hietaniemi2014-09-141-1/+3
* Use HAS_ISFINITE for Perl_isfinitel.Jarkko Hietaniemi2014-09-131-1/+1
* HAS_C99 comment tweak.Jarkko Hietaniemi2014-09-131-2/+5
* Comment tweak for HAS_C99.Jarkko Hietaniemi2014-09-121-1/+5
* Use the multiplication test instead of the DBL_MAX/LDBL_MAX.Jarkko Hietaniemi2014-09-121-5/+6
* Perl_isfinitel should not use the fpclass macross blindly.Jarkko Hietaniemi2014-09-121-2/+2
* More ways to Perl_isfinitel.Jarkko Hietaniemi2014-09-111-20/+22
* Have a Perl_isfinitel() separate from USE_LONG_DOUBLE.Jarkko Hietaniemi2014-09-111-10/+21
* Comment tweaks.Jarkko Hietaniemi2014-09-091-0/+4
* Sort the Perl_ math wrappers for easier eyeballing.Jarkko Hietaniemi2014-09-091-23/+26
* modfl emulation via truncl (C99) and copysignl.Jarkko Hietaniemi2014-09-071-3/+1
* Long double might have INFINITYL or NANL.Jarkko Hietaniemi2014-09-061-5/+13
* NV_INF/NV_NAN fallback where int32 is coerced to IEEE754 float.Jarkko Hietaniemi2014-09-061-1/+33
* fpclass snan detection errors (cut-n-paste).Jarkko Hietaniemi2014-09-051-2/+2
* Use sizeof() in UNUSED_ARG and UNUSED_VAR to avoid accessing the values.Jarkko Hietaniemi2014-09-041-3/+4
* POSIX math: have the Perl_func wrappers for the C89 math, too.Jarkko Hietaniemi2014-09-031-0/+16
* isnormal macro in fp.h broken on VMS.Craig A. Berry2014-09-011-0/+3
* Static initialization using 1/0 or 0/0 not C89.Jarkko Hietaniemi2014-09-011-2/+8
* Perl_isinf and Perl_isfinite fallbacks.Jarkko Hietaniemi2014-09-011-0/+8
* Do not use HUGE_VAL/VALL for NV_INF.Jarkko Hietaniemi2014-09-011-9/+6
* fix fp_classify in perl.h for VMS.Craig A. Berry2014-09-011-0/+4
* POSIX math: fpclassify continues.Jarkko Hietaniemi2014-08-311-1/+1
* The fp classification is a royal mess.Jarkko Hietaniemi2014-08-311-61/+102
* Another way to detect C99.Jarkko Hietaniemi2014-08-301-3/+1
* HAS_C99 was oddly defined, and oddly used.Jarkko Hietaniemi2014-08-301-1/+5
* Don't use isfinitel/isinfl/isnanl if the C99 macros exist.Jarkko Hietaniemi2014-08-281-3/+9
* *fp*class* comment tweaks.Jarkko Hietaniemi2014-08-261-2/+2
* Reorder the *fp*class* in preference order, add comments.Jarkko Hietaniemi2014-08-241-38/+52
* More is_inf() et alia dance.Jarkko Hietaniemi2014-08-241-17/+36
* Include fp.h with math.h on VMS.Craig A. Berry2014-08-231-0/+4
* Fix infnan.t Win32 failure.Jarkko Hietaniemi2014-08-221-1/+15
* Introduce Perl_strtod (macro) to call strtold if long doubles.Jarkko Hietaniemi2014-08-221-0/+10
* Perl_isinf and Perl_isfinite enhancements.Jarkko Hietaniemi2014-08-221-22/+11
* Clean up the fpclass forest.Jarkko Hietaniemi2014-08-221-38/+78
* Win32 apparently has _isnan() and _finite(), and _fpclass().Jarkko Hietaniemi2014-08-201-3/+28
* Perl_isinf enhancements.Jarkko Hietaniemi2014-08-201-1/+6
* Perl_isfinite() enhancements.Jarkko Hietaniemi2014-08-201-10/+16
* Hexadecimal float literals, for perl #122219Jarkko Hietaniemi2014-08-131-6/+0
* Hexadecimal float sprintf, for perl #122219Jarkko Hietaniemi2014-08-131-0/+18
* Perl_ldexp is one of ldexpl, scalbnl, or ldexpJarkko Hietaniemi2014-08-131-0/+8
* [perl #46947] Parse method-BLOCK arguments as a termFather Chrysostomos2014-08-121-0/+1
* Make PERL_GLOBAL_STRUCT_PRIVATE visible in -V.Jarkko Hietaniemi2014-07-241-0/+3
* Implement grok_atou as safe/strict atoi replacement.Jarkko Hietaniemi2014-07-221-1/+2