diff options
author | Karl Williamson <khw@cpan.org> | 2021-07-24 07:16:53 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2021-07-30 06:11:45 -0600 |
commit | fb1a3d54eecea658ab547fc242fd442e4155729a (patch) | |
tree | e5ff32795f45a7f4cf5b35195ea71387dc498c27 | |
parent | 0132fc5656244fb12418303024312482d47ea4f0 (diff) | |
download | perl-fb1a3d54eecea658ab547fc242fd442e4155729a.tar.gz |
CxLVAL(): Save a '&' instr by casting to U8
-rw-r--r-- | cop.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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))) |