From bb17208353b2f15e0bf22099038f9ea336d6de2a Mon Sep 17 00:00:00 2001 From: Nicholas Clark Date: Mon, 20 Feb 2006 17:48:21 +0000 Subject: PVFMs don't need CvDEPTH, and PVCVs don't use SvIVX, so moving xcv_depth into the IV union saves 4(ish) bytes per CV and format. "ish" because it was a long, but has been changed to I32 (along with the corresponding field in struct block_sub) so as not to enlarge the IV union on platforms where sizeof(long) > sizeof(IV), or struct block_sub where sizeof(long) > sizeof(I32) p4raw-id: //depot/perl@27247 --- cop.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cop.h') diff --git a/cop.h b/cop.h index 92a61df96f..92964644cd 100644 --- a/cop.h +++ b/cop.h @@ -237,7 +237,7 @@ struct block_sub { GV * dfoutgv; AV * savearray; AV * argarray; - long olddepth; + I32 olddepth; U8 hasargs; U8 lval; /* XXX merge lval and hasargs? */ PAD *oldcomppad; -- cgit v1.2.1