summaryrefslogtreecommitdiff
path: root/cop.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2010-09-09 09:32:52 +0100
committerNicholas Clark <nick@ccl4.org>2010-09-09 09:34:37 +0100
commit56b98d0f4bece55b858afe59e6460b6250dcde52 (patch)
tree6a893e64589a36fae738dd43e6f37b2a7ea497a6 /cop.h
parent14d519680d3b9b07f2015a7b0a15c88c356510cb (diff)
downloadperl-56b98d0f4bece55b858afe59e6460b6250dcde52.tar.gz
Define CxPADLOOP unconditionally, as post f83b46a0 it is always used.
Previously it was only used under -DITHREADS
Diffstat (limited to 'cop.h')
-rw-r--r--cop.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/cop.h b/cop.h
index 86a67d001e..4791c80071 100644
--- a/cop.h
+++ b/cop.h
@@ -695,9 +695,7 @@ struct context {
/* private flags for CXt_LOOP */
#define CXp_FOR_DEF 0x10 /* foreach using $_ */
-#ifdef USE_ITHREADS
-# define CxPADLOOP(c) ((c)->blk_loop.my_op->op_targ)
-#endif
+#define CxPADLOOP(c) ((c)->blk_loop.my_op->op_targ)
/* private flags for CXt_SUBST */
#define CXp_ONCE 0x10 /* What was sbu_once in struct subst */