=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
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
=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 *