From fb1a3d54eecea658ab547fc242fd442e4155729a Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Sat, 24 Jul 2021 07:16:53 -0600 Subject: CxLVAL(): Save a '&' instr by casting to U8 --- cop.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cop.h') diff --git a/cop.h b/cop.h index 33463a0ab2..fd0e12a84a 100644 --- a/cop.h +++ b/cop.h @@ -885,7 +885,7 @@ struct block_loop { * Note the contrast with CvLVALUE(), which is a property of the sub * rather than the call site. */ -#define CxLVAL(c) (0 + ((c)->blk_u16 & 0xff)) +#define CxLVAL(c) (0 + ((U8)((c)->blk_u16))) -- cgit v1.2.1