diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-08-29 03:35:18 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-08-29 03:35:18 +0000 |
commit | fc0dc3b334ed07492841d4d27f3f4100c92588d2 (patch) | |
tree | 29f740a42534c1315c9b9f49ca26c9ceb21ba860 /run.c | |
parent | 0ae6046c5548636c0d642d76d3c8222375a744dd (diff) | |
download | perl-fc0dc3b334ed07492841d4d27f3f4100c92588d2.tar.gz |
deadcode removal
p4raw-id: //depot/perl@4034
Diffstat (limited to 'run.c')
-rw-r--r-- | run.c | 10 |
1 files changed, 2 insertions, 8 deletions
@@ -17,18 +17,12 @@ * know. Run now! Hope is in speed!" --Gandalf */ -#ifdef PERL_OBJECT -#define CALLOP this->*PL_op -#else -#define CALLOP *PL_op -#endif - int Perl_runops_standard(pTHX) { dTHR; - while ( PL_op = (CALLOP->op_ppaddr)(aTHX) ) ; + while ( PL_op = CALL_FPTR(PL_op->op_ppaddr)(aTHX) ) ; TAINT_NOT; return 0; @@ -54,7 +48,7 @@ Perl_runops_debug(pTHX) DEBUG_t(debop(PL_op)); DEBUG_P(debprof(PL_op)); } - } while ( PL_op = (CALLOP->op_ppaddr)(aTHX) ); + } while ( PL_op = CALL_FPTR(PL_op->op_ppaddr)(aTHX) ); TAINT_NOT; return 0; |