From 39ff6c37b02dc106ce36a529c4fdd80ac93c7ada Mon Sep 17 00:00:00 2001 From: Father Chrysostomos Date: Mon, 22 Sep 2014 21:45:26 -0700 Subject: gv.h: Make gp_line and gp_flags into a bitfield This reduces the allocated size on Windows, where an extra header is added to what gets allocated. See . --- gv.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gv.h') diff --git a/gv.h b/gv.h index 2b29b6d8d2..cf096c3f87 100644 --- a/gv.h +++ b/gv.h @@ -18,8 +18,8 @@ struct gp { AV * gp_av; /* array value */ CV * gp_form; /* format value */ GV * gp_egv; /* effective gv, if *glob */ - line_t gp_line; /* line first declared at (for -w) */ - U32 gp_flags; + U32 gp_line:31; /* line first declared at (for -w) */ + U32 gp_flags:1; HEK * gp_file_hek; /* file first declared in (for -w) */ }; -- cgit v1.2.1