summaryrefslogtreecommitdiff
path: root/sv.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2008-07-12 07:40:33 +0000
committerNicholas Clark <nick@ccl4.org>2008-07-12 07:40:33 +0000
commit30ec677dd4d12a9c099bac3f654b308d387386e9 (patch)
treea1d4bf654d586b6156b588fc9a0e1e74a0271d7c /sv.h
parentbfe27a58755fd70d150ce6080e7cfdd2f87f2358 (diff)
downloadperl-30ec677dd4d12a9c099bac3f654b308d387386e9.tar.gz
PVFMs don't need to access the IVX any more. (as of change 32836, which
re-implemented SvOOK() to avoid using it) p4raw-id: //depot/perl@34133
Diffstat (limited to 'sv.h')
-rw-r--r--sv.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/sv.h b/sv.h
index 65e6ec4818..d77e2b5632 100644
--- a/sv.h
+++ b/sv.h
@@ -1094,6 +1094,7 @@ the scalar's value cannot change unless written to.
assert(SvTYPE(_svivx) != SVt_PVAV); \
assert(SvTYPE(_svivx) != SVt_PVHV); \
assert(SvTYPE(_svivx) != SVt_PVCV); \
+ assert(SvTYPE(_svivx) != SVt_PVFM); \
assert(!isGV_with_GP(_svivx)); \
&(((XPVIV*) SvANY(_svivx))->xiv_iv); \
}))
@@ -1103,6 +1104,7 @@ the scalar's value cannot change unless written to.
assert(SvTYPE(_svuvx) != SVt_PVAV); \
assert(SvTYPE(_svuvx) != SVt_PVHV); \
assert(SvTYPE(_svuvx) != SVt_PVCV); \
+ assert(SvTYPE(_svuvx) != SVt_PVFM); \
assert(!isGV_with_GP(_svuvx)); \
&(((XPVUV*) SvANY(_svuvx))->xuv_uv); \
}))