summaryrefslogtreecommitdiff
path: root/pp_ctl.c
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2008-01-26 13:49:44 +0000
committerNicholas Clark <nick@ccl4.org>2008-01-26 13:49:44 +0000
commit840fe43365baa830d5f64ca6e8c44e695a8dfb51 (patch)
treec96d14cfd882c4e253e431e2d95df98dc5125bff /pp_ctl.c
parent5edb5b2abb5db9e134cbde1a4d43fd61fa2b229d (diff)
downloadperl-840fe43365baa830d5f64ca6e8c44e695a8dfb51.tar.gz
Some code can be removed following change 33070.
p4raw-id: //depot/perl@33073
Diffstat (limited to 'pp_ctl.c')
-rw-r--r--pp_ctl.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/pp_ctl.c b/pp_ctl.c
index ec4a9e32b9..5da699358f 100644
--- a/pp_ctl.c
+++ b/pp_ctl.c
@@ -1835,7 +1835,7 @@ PP(pp_enteriter)
register PERL_CONTEXT *cx;
const I32 gimme = GIMME_V;
SV **svp;
- U8 cxtype = 0;
+ U8 cxtype = CXt_LOOP_FOR;
#ifdef USE_ITHREADS
void *iterdata;
#endif
@@ -1873,7 +1873,6 @@ PP(pp_enteriter)
ENTER;
- cxtype |= CXt_LOOP_FOR;
PUSHBLOCK(cx, cxtype, SP);
#ifdef USE_ITHREADS
PUSHLOOP_FOR(cx, iterdata, MARK);