diff options
author | Nicholas Clark <nick@ccl4.org> | 2008-01-20 13:28:10 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2008-01-20 13:28:10 +0000 |
commit | 0cbdab387091772196a9652896d774ed74da2f21 (patch) | |
tree | 41e8917a1a5174a46027260a320cdff424681cda /cop.h | |
parent | d11865445af8750ad2c09674e81b7941117e83b5 (diff) | |
download | perl-0cbdab387091772196a9652896d774ed74da2f21.tar.gz |
In struct block_loop access element label via the macro CxLABEL()
(for the places that aren't about to change)
p4raw-id: //depot/perl@33010
Diffstat (limited to 'cop.h')
-rw-r--r-- | cop.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -474,6 +474,7 @@ struct block_loop { else \ cx->blk_loop.itersave = NULL; #endif +#define CxLABEL(c) (0 + (c)->blk_loop.label) #ifdef USE_ITHREADS # define PUSHLOOP_OP_NEXT /* No need to do anything. */ |