diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-11-08 18:50:40 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-11-08 18:50:40 +0000 |
commit | 350de78d9c02710bb008e9ca922c78ba251ec366 (patch) | |
tree | 6d721d7c176e73d19432c7bee8dc5f75d5572bda /run.c | |
parent | d18c61170a30691556a1da7413e13241a92f4e0a (diff) | |
download | perl-350de78d9c02710bb008e9ca922c78ba251ec366.tar.gz |
preliminary support for GVOP indirection via pad
p4raw-id: //depot/perl@4539
Diffstat (limited to 'run.c')
-rw-r--r-- | run.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -71,9 +71,9 @@ Perl_debop(pTHX_ OP *o) break; case OP_GVSV: case OP_GV: - if (cSVOPo->op_sv) { + if (cGVOPo) { sv = NEWSV(0,0); - gv_fullname3(sv, (GV*)cSVOPo->op_sv, Nullch); + gv_fullname3(sv, cGVOPo, Nullch); PerlIO_printf(Perl_debug_log, "(%s)", SvPV(sv, n_a)); SvREFCNT_dec(sv); } |