summaryrefslogtreecommitdiff
path: root/scope.c
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2006-04-13 16:14:23 +0000
committerNicholas Clark <nick@ccl4.org>2006-04-13 16:14:23 +0000
commitc88c823b70650169d3aaff2f95978d279e81b562 (patch)
tree73c2ca246d565bb2343a05dbac1546013b944908 /scope.c
parent4ae2f9814731932908f61ce4a79c6da6063584e7 (diff)
downloadperl-c88c823b70650169d3aaff2f95978d279e81b562.tar.gz
Remove SAVEt_FREESHAREDPV, as nothing is using it, and it isn't catered
for in Perl_ss_dup, hence nothing is testing it and nothing will alert us if it breaks. p4raw-id: //depot/perl@27792
Diffstat (limited to 'scope.c')
-rw-r--r--scope.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/scope.c b/scope.c
index ebea9e13e9..94f648af16 100644
--- a/scope.c
+++ b/scope.c
@@ -764,10 +764,6 @@ Perl_leave_scope(pTHX_ I32 base)
ptr = SSPOPPTR;
Safefree(ptr);
break;
- case SAVEt_FREESHAREDPV:
- ptr = SSPOPPTR;
- PerlMemShared_free(ptr);
- break;
case SAVEt_CLEARSV:
ptr = (void*)&PL_curpad[SSPOPLONG];
sv = *(SV**)ptr;