From 69ecfd1277806cc4f0867436789903927289b9b2 Mon Sep 17 00:00:00 2001 From: Nicholas Clark Date: Sun, 5 Mar 2006 18:13:42 +0000 Subject: Move the GvNAME HEK into the IV union - every GV is now 1 pointer smaller. p4raw-id: //depot/perl@27380 --- av.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'av.h') diff --git a/av.h b/av.h index 94cd82bf98..d91b6f0086 100644 --- a/av.h +++ b/av.h @@ -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 */ -- cgit v1.2.1