summaryrefslogtreecommitdiff
path: root/sv.c
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2016-08-10 19:47:19 -0400
committerJarkko Hietaniemi <jhi@iki.fi>2016-08-11 09:36:21 -0400
commit520f3e58c346a7bc3ef0509dfe0db206dae454ee (patch)
tree8f8f7fc1c4711171720d9ccfbfb3205706237abe /sv.c
parent94d00769fba240ffb86f18b3d66341fb1d24ae6c (diff)
downloadperl-520f3e58c346a7bc3ef0509dfe0db206dae454ee.tar.gz
Comment fix for b6d9b423
Diffstat (limited to 'sv.c')
-rw-r--r--sv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sv.c b/sv.c
index fab6e5ef39..93e6364071 100644
--- a/sv.c
+++ b/sv.c
@@ -12422,12 +12422,12 @@ Perl_sv_vcatpvfn_flags(pTHX_ SV *const sv, const char *const pat, const STRLEN p
bool hexradix = FALSE; /* should we output the radix */
bool subnormal = FALSE; /* IEEE 754 subnormal/denormal */
- /* XXX: denormals, NaN, Inf.
+ /* XXX: NaN, Inf -- though they are printed as "NaN" and "Inf".
*
* For example with denormals, (assuming the vanilla
* 64-bit double): the exponent is zero. 1xp-1074 is
* the smallest denormal and the smallest double, it
- * should be output as 0x0.0000000000001p-1022 to
+ * could be output also as 0x0.0000000000001p-1022 to
* match its internal structure. */
vend = S_hextract(aTHX_ nv, &exponent, &subnormal, vhex, NULL);