diff options
author | Nicholas Clark <nick@ccl4.org> | 2008-07-12 07:40:33 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2008-07-12 07:40:33 +0000 |
commit | 30ec677dd4d12a9c099bac3f654b308d387386e9 (patch) | |
tree | a1d4bf654d586b6156b588fc9a0e1e74a0271d7c /sv.h | |
parent | bfe27a58755fd70d150ce6080e7cfdd2f87f2358 (diff) | |
download | perl-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.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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); \ })) |