diff options
author | Nicholas Clark <nick@ccl4.org> | 2004-10-31 12:24:09 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2004-10-31 12:24:09 +0000 |
commit | 0309f36e4df1c9e72102c33e0035b9cae83fb872 (patch) | |
tree | eff9ec43c47713fd72efadea60e2fc333084e390 /perl.c | |
parent | 4946def643f4b02cbfd9fb0ba60fc8d67c013a19 (diff) | |
download | perl-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.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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; |