diff options
author | Nicholas Clark <nick@ccl4.org> | 2006-02-20 11:54:38 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2006-02-20 11:54:38 +0000 |
commit | bf53b3a5f249ae2a059ca8014f7a62d301c554bc (patch) | |
tree | 0183c85069e9165086940f61f7ddb80b5b1e4137 /dump.c | |
parent | aa092aa30938df861825e5192a09d0567bdac529 (diff) | |
download | perl-bf53b3a5f249ae2a059ca8014f7a62d301c554bc.tar.gz |
xcv_start and xcv_xsubany can be merged into a union, as they are never
both needed.
p4raw-id: //depot/perl@27243
Diffstat (limited to 'dump.c')
-rw-r--r-- | dump.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1486,13 +1486,13 @@ Perl_do_sv_dump(pTHX_ I32 level, PerlIO *file, SV *sv, I32 nest, I32 maxnest, bo /* FALL THROUGH */ case SVt_PVFM: do_hv_dump(level, file, " COMP_STASH", CvSTASH(sv)); - if (CvSTART(sv)) + if (!CvISXSUB(sv) && CvSTART(sv)) Perl_dump_indent(aTHX_ level, file, " START = 0x%"UVxf" ===> %"IVdf"\n", PTR2UV(CvSTART(sv)), (IV)sequence_num(CvSTART(sv))); Perl_dump_indent(aTHX_ level, file, " ROOT = 0x%"UVxf"\n", PTR2UV(CvROOT(sv))); if (CvROOT(sv) && dumpops) do_op_dump(level+1, file, CvROOT(sv)); Perl_dump_indent(aTHX_ level, file, " XSUB = 0x%"UVxf"\n", PTR2UV(CvXSUB(sv))); - { + if (CvISXSUB(sv)) { SV *constant = cv_const_sv((CV *)sv); |