diff options
author | Father Chrysostomos <sprout@cpan.org> | 2013-08-05 01:22:46 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2013-08-05 02:23:36 -0700 |
commit | a81bac00de6943a3346cceca95db5f3ce716aa0f (patch) | |
tree | 145740a66a8254d619be730867e8ac08b49e4548 /scope.c | |
parent | 4e3cfd59d9b58c4fdfd2efd7ae4a47b8eef16913 (diff) | |
download | perl-a81bac00de6943a3346cceca95db5f3ce716aa0f.tar.gz |
Remove SAVEt_STACK_CXPOS
81ed78b25c4b removed the only use of this.
Diffstat (limited to 'scope.c')
-rw-r--r-- | scope.c | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -1104,9 +1104,6 @@ Perl_leave_scope(pTHX_ I32 base) case SAVEt_STACK_POS: /* Position on Perl stack */ PL_stack_sp = PL_stack_base + arg0.any_i32; break; - case SAVEt_STACK_CXPOS: /* blk_oldsp on context stack */ - cxstack[ARG0_I32].blk_oldsp = ARG1_I32; - break; case SAVEt_AELEM: /* array element */ svp = av_fetch(ARG2_AV, ARG1_I32, 1); if (!AvREAL(ARG2_AV) && AvREIFY(ARG2_AV)) /* undo reify guard */ |