diff options
author | Nicholas Clark <nick@ccl4.org> | 2006-04-13 16:14:23 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2006-04-13 16:14:23 +0000 |
commit | c88c823b70650169d3aaff2f95978d279e81b562 (patch) | |
tree | 73c2ca246d565bb2343a05dbac1546013b944908 /scope.c | |
parent | 4ae2f9814731932908f61ce4a79c6da6063584e7 (diff) | |
download | perl-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.c | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -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; |