summaryrefslogtreecommitdiff
path: root/gv.c
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 /gv.c
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 'gv.c')
-rw-r--r--gv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gv.c b/gv.c
index 8b3b099f32..a458159d76 100644
--- a/gv.c
+++ b/gv.c
@@ -2115,7 +2115,7 @@ Perl_gv_name_set(pTHX_ GV *gv, const char *name, U32 len, U32 flags)
Perl_croak(aTHX_ "panic: gv name too long (%"UVuf")", (UV) len);
PERL_HASH(hash, name, len);
- GvXPVGV(gv)->xgv_namehek = name ? share_hek(name, len, hash) : 0;
+ GvNAME_HEK(gv) = name ? share_hek(name, len, hash) : 0;
}
/*