summaryrefslogtreecommitdiff
path: root/scope.c
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2013-08-05 01:22:46 -0700
committerFather Chrysostomos <sprout@cpan.org>2013-08-05 02:23:36 -0700
commita81bac00de6943a3346cceca95db5f3ce716aa0f (patch)
tree145740a66a8254d619be730867e8ac08b49e4548 /scope.c
parent4e3cfd59d9b58c4fdfd2efd7ae4a47b8eef16913 (diff)
downloadperl-a81bac00de6943a3346cceca95db5f3ce716aa0f.tar.gz
Remove SAVEt_STACK_CXPOS
81ed78b25c4b removed the only use of this.
Diffstat (limited to 'scope.c')
-rw-r--r--scope.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/scope.c b/scope.c
index 24645909d7..abef454c44 100644
--- a/scope.c
+++ b/scope.c
@@ -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 */