This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Forgot to adjust this: quadmath is not long doubles.
authorJarkko Hietaniemi <jhi@iki.fi>
Sun, 7 Jun 2015 21:42:10 +0000 (17:42 -0400)
committerJarkko Hietaniemi <jhi@iki.fi>
Sun, 7 Jun 2015 21:42:10 +0000 (17:42 -0400)
INSTALL
pod/perl5220delta.pod

diff --git a/INSTALL b/INSTALL
index 14ee29c..63e54c8 100644 (file)
--- a/INSTALL
+++ b/INSTALL
@@ -343,7 +343,7 @@ and the long double support.
 
 =head3 quadmath
 
-One option for long doubles is that gcc 4.6 and later have a library
+One option for more precision is that gcc 4.6 and later have a library
 called quadmath, which implements the IEEE 754 quadruple precision
 (128-bit, 113 bits of mantissa) floating point numbers.  The library
 works at least on x86 and ia64 platforms.  It may be part of your gcc
@@ -352,7 +352,7 @@ installation, or you may need to install it separately.
 With "Configure -Dusequadmath" you can try enabling its use, but note
 the compiler dependency, you may need to also add "-Dcc=...".
 At C level the type is called C<__float128> (note, not "long double"),
-but Perl source knows it as NV.
+but Perl source knows it as NV.  (This is not "long doubles".)
 
 =head3 Algorithmic Complexity Attacks on Hashes
 
index 36f1bfc..4cde5d8 100644 (file)
@@ -2356,10 +2356,10 @@ threaded perl.
 
 =item *
 
-For long doubles (to get more precision and range for floating point numbers)
-one can now use the GCC quadmath library which implements the quadruple
-precision floating point numbers on x86 and IA-64 platforms.  See
-F<INSTALL> for details.
+To get more precision and range for floating point numbers one can now
+use the GCC quadmath library which implements the quadruple precision
+floating point numbers on x86 and IA-64 platforms.  See F<INSTALL> for
+details.
 
 =item *