summaryrefslogtreecommitdiff
path: root/cv.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2006-12-28 21:21:22 +0000
committerNicholas Clark <nick@ccl4.org>2006-12-28 21:21:22 +0000
commit3441fb63c8a89050ee7151eb55228fe165595be1 (patch)
tree63644fc6c0ff184296ab16c31e79fc4eed1d9718 /cv.h
parent809abb02185a4df0f7a1a043727bae7a5c08a798 (diff)
downloadperl-3441fb63c8a89050ee7151eb55228fe165595be1.tar.gz
Move the low/high cop sequences from NVX/IVX to a two U32 structure
in the xnv union. This frees up IVX for the PL_generation code, which in turn will allow SvCUR to return to its real purpose. p4raw-id: //depot/perl@29630
Diffstat (limited to 'cv.h')
-rw-r--r--cv.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/cv.h b/cv.h
index 2673bcce26..cf71d15ffc 100644
--- a/cv.h
+++ b/cv.h
@@ -14,6 +14,10 @@ struct xpvcv {
union {
NV xnv_nv; /* numeric value, if any */
HV * xgv_stash;
+ struct {
+ U32 xlow;
+ U32 xhigh;
+ } xpad_cop_seq; /* used by pad.c for cop_sequence */
} xnv_u;
STRLEN xpv_cur; /* length of xp_pv as a C string */
STRLEN xpv_len; /* allocated size */