diff options
author | Nicholas Clark <nick@ccl4.org> | 2006-03-05 18:13:42 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2006-03-05 18:13:42 +0000 |
commit | 69ecfd1277806cc4f0867436789903927289b9b2 (patch) | |
tree | 5bb8df6b438f8c8259c922bdde3b1dc1413ea6fc /av.h | |
parent | acda4c6a827049c821c192cce45f6c5299c45783 (diff) | |
download | perl-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 'av.h')
-rw-r--r-- | av.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -19,6 +19,8 @@ struct xpvav { IV xivu_iv; /* integer value or pv offset */ UV xivu_uv; void * xivu_p1; + I32 xivu_i32; + HEK * xivu_namehek; } xiv_u; union { MAGIC* xmg_magic; /* linked list of magicalness */ @@ -37,6 +39,8 @@ typedef struct { IV xivu_iv; /* integer value or pv offset */ UV xivu_uv; void * xivu_p1; + I32 xivu_i32; + HEK * xivu_namehek; } xiv_u; union { MAGIC* xmg_magic; /* linked list of magicalness */ |