diff options
author | Nicholas Clark <nick@ccl4.org> | 2008-01-26 13:49:44 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2008-01-26 13:49:44 +0000 |
commit | 840fe43365baa830d5f64ca6e8c44e695a8dfb51 (patch) | |
tree | c96d14cfd882c4e253e431e2d95df98dc5125bff /pp_ctl.c | |
parent | 5edb5b2abb5db9e134cbde1a4d43fd61fa2b229d (diff) | |
download | perl-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.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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); |