diff options
author | Dave Mitchell <davem@fdisolutions.com> | 2008-12-06 00:29:37 +0000 |
---|---|---|
committer | Dave Mitchell <davem@fdisolutions.com> | 2008-12-06 00:29:37 +0000 |
commit | 26550cfef45103290e6e814a64010bb9c9c2176c (patch) | |
tree | 0854c109e3a312670076fc058e4970c02a4692dd /dump.c | |
parent | bd08a8a12f1eb49bf2fd1acc007b0deb2151a95c (diff) | |
download | perl-26550cfef45103290e6e814a64010bb9c9c2176c.tar.gz |
un-integrate #34133:
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/maint-5.10/perl@35026
Diffstat (limited to 'dump.c')
-rw-r--r-- | dump.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1521,7 +1521,7 @@ Perl_do_sv_dump(pTHX_ I32 level, PerlIO *file, SV *sv, I32 nest, I32 maxnest, bo return; } if ((type >= SVt_PVIV && type != SVt_PVAV && type != SVt_PVHV - && type != SVt_PVCV && !isGV_with_GP(sv) && type != SVt_PVFM) + && type != SVt_PVCV && !isGV_with_GP(sv)) || type == SVt_IV) { if (SvIsUV(sv) #ifdef PERL_OLD_COPY_ON_WRITE |