summaryrefslogtreecommitdiff
path: root/perl.c
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2004-10-31 12:24:09 +0000
committerNicholas Clark <nick@ccl4.org>2004-10-31 12:24:09 +0000
commit0309f36e4df1c9e72102c33e0035b9cae83fb872 (patch)
treeeff9ec43c47713fd72efadea60e2fc333084e390 /perl.c
parent4946def643f4b02cbfd9fb0ba60fc8d67c013a19 (diff)
downloadperl-0309f36e4df1c9e72102c33e0035b9cae83fb872.tar.gz
Set the IV values for PL_sv_yes and PL_sv_no at initialisation time.
p4raw-id: //depot/perl@23445
Diffstat (limited to 'perl.c')
-rw-r--r--perl.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/perl.c b/perl.c
index 33d7dfb9da..65b02a09c9 100644
--- a/perl.c
+++ b/perl.c
@@ -237,11 +237,15 @@ perl_construct(pTHXx)
SvREFCNT(&PL_sv_undef) = (~(U32)0)/2;
sv_setpv(&PL_sv_no,PL_No);
+ /* value lookup in void context - happens to have the side effect
+ of caching the numeric forms. */
+ SvIV(&PL_sv_no);
SvNV(&PL_sv_no);
SvREADONLY_on(&PL_sv_no);
SvREFCNT(&PL_sv_no) = (~(U32)0)/2;
sv_setpv(&PL_sv_yes,PL_Yes);
+ SvIV(&PL_sv_yes);
SvNV(&PL_sv_yes);
SvREADONLY_on(&PL_sv_yes);
SvREFCNT(&PL_sv_yes) = (~(U32)0)/2;