summaryrefslogtreecommitdiff
path: root/cv.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2006-03-05 18:13:42 +0000
committerNicholas Clark <nick@ccl4.org>2006-03-05 18:13:42 +0000
commit69ecfd1277806cc4f0867436789903927289b9b2 (patch)
tree5bb8df6b438f8c8259c922bdde3b1dc1413ea6fc /cv.h
parentacda4c6a827049c821c192cce45f6c5299c45783 (diff)
downloadperl-69ecfd1277806cc4f0867436789903927289b9b2.tar.gz
Move the GvNAME HEK into the IV union - every GV is now 1 pointer
smaller. p4raw-id: //depot/perl@27380
Diffstat (limited to 'cv.h')
-rw-r--r--cv.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/cv.h b/cv.h
index 6d93d7171f..e92b326a8c 100644
--- a/cv.h
+++ b/cv.h
@@ -22,6 +22,7 @@ struct xpvcv {
UV xivu_uv;
void * xivu_p1;
I32 xivu_i32; /* depth, >= 2 indicates recursive call */
+ HEK * xivu_namehek;
} xiv_u;
union {
MAGIC* xmg_magic; /* linked list of magicalness */
@@ -56,6 +57,7 @@ typedef struct {
UV xivu_uv;
void * xivu_p1;
I32 xivu_i32; /* depth, >= 2 indicates recursive call */
+ HEK * xivu_namehek;
} xiv_u;
union {
MAGIC* xmg_magic; /* linked list of magicalness */