summaryrefslogtreecommitdiff
path: root/cop.h
diff options
context:
space:
mode:
authorDavid Mitchell <davem@iabyn.com>2015-12-26 13:48:43 +0000
committerDavid Mitchell <davem@iabyn.com>2016-02-03 09:19:19 +0000
commit788ee336a4716911742183b2eca7ecbc9dfd4a17 (patch)
treebf9992551d708a50b6a9a7d4f2d4048681dc28f3 /cop.h
parentc83cbdf5936b95912a7ef5ec1e23c92eb03accc2 (diff)
downloadperl-788ee336a4716911742183b2eca7ecbc9dfd4a17.tar.gz
consolidate common code in PUSHLOOP_FOR,_PLAIN
Diffstat (limited to 'cop.h')
-rw-r--r--cop.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cop.h b/cop.h
index 2657ffbd6e..43f222c297 100644
--- a/cop.h
+++ b/cop.h
@@ -843,7 +843,7 @@ struct block_loop {
#endif
#define PUSHLOOP_FOR(cx, ivar, isave) \
- cx->blk_loop.my_op = cLOOP; \
+ PUSHLOOP_PLAIN(cx); \
cx->blk_loop.itervar_u.svp = (SV**)(ivar); \
cx->blk_loop.itersave = isave; \
PUSHLOOP_FOR_setpad(cx);