summaryrefslogtreecommitdiff
path: root/MANIFEST
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2014-08-12 08:39:40 -0400
committerJarkko Hietaniemi <jhi@iki.fi>2014-08-13 22:44:06 -0400
commit61e61fbc49c95894c46dd5128133731fc2092e07 (patch)
tree000efc7c83f1e235f440163bca5f467b3299558b /MANIFEST
parent40bca5ae9c72f416f0e0e056ecf8e205a03e5be3 (diff)
downloadperl-61e61fbc49c95894c46dd5128133731fc2092e07.tar.gz
Hexadecimal float literals, for perl #122219
Do not use system strtod/strtold since its C99 (which we do not require). If we can fit the mantissa bits of a NV to a UV (which is the case for the most common format, 64-bit IEEE 754 double, which has 52 mantissa bits) we will use that, and only in the end convert to NV. If we cannot fit the bits, accumulate the bits incrementally to a NV.
Diffstat (limited to 'MANIFEST')
-rw-r--r--MANIFEST1
1 files changed, 1 insertions, 0 deletions
diff --git a/MANIFEST b/MANIFEST
index 1d8411e485..179cc3d35d 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -5088,6 +5088,7 @@ t/op/hash-rt85026.t See if hash iteration/deletion works
t/op/hash.t See if the complexity attackers are repelled
t/op/hashwarn.t See if warnings for bad hash assignments work
t/op/heredoc.t See if heredoc edge and corner cases work
+t/op/hexfp.t See if hexadecimal float literals work
t/op/inccode.t See if coderefs work in @INC
t/op/inccode-tie.t See if tie to @INC works
t/op/incfilter.t See if the source filters in coderef-in-@INC work