summaryrefslogtreecommitdiff
path: root/inline.h
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2014-09-23 06:24:50 -0700
committerFather Chrysostomos <sprout@cpan.org>2014-09-24 22:05:36 -0700
commit145bf8eec5be8c17bd592ec8d28efb239bdafa93 (patch)
tree9c0676d6c0128eebaf0ac8eed3c1aa625f55981f /inline.h
parenta9f1090bfdfd2dc65f4d48a010d12f08dfeeedb5 (diff)
downloadperl-145bf8eec5be8c17bd592ec8d28efb239bdafa93.tar.gz
Remove most uses of PADMY
SVs_PADMY is now 0, and SvPADMY means !SvPADTMP.
Diffstat (limited to 'inline.h')
-rw-r--r--inline.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/inline.h b/inline.h
index 873055d887..5256e8cc38 100644
--- a/inline.h
+++ b/inline.h
@@ -156,18 +156,6 @@ SvAMAGIC_off(SV *sv)
}
PERL_STATIC_INLINE U32
-S_SvPADTMP_on(SV *sv)
-{
- assert(!(SvFLAGS(sv) & SVs_PADMY));
- return SvFLAGS(sv) |= SVs_PADTMP;
-}
-PERL_STATIC_INLINE U32
-S_SvPADTMP_off(SV *sv)
-{
- assert(!(SvFLAGS(sv) & SVs_PADMY));
- return SvFLAGS(sv) &= ~SVs_PADTMP;
-}
-PERL_STATIC_INLINE U32
S_SvPADSTALE_on(SV *sv)
{
assert(!(SvFLAGS(sv) & SVs_PADTMP));