summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--perl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl.c b/perl.c
index abebfa67fb..c7e9a908fc 100644
--- a/perl.c
+++ b/perl.c
@@ -301,14 +301,14 @@ perl_construct(pTHXx)
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);
+ SvIV(&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);
+ SvIV(&PL_sv_yes);
SvREADONLY_on(&PL_sv_yes);
SvREFCNT(&PL_sv_yes) = (~(U32)0)/2;