summaryrefslogtreecommitdiff
path: root/run.c
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1999-08-29 03:35:18 +0000
committerGurusamy Sarathy <gsar@cpan.org>1999-08-29 03:35:18 +0000
commitfc0dc3b334ed07492841d4d27f3f4100c92588d2 (patch)
tree29f740a42534c1315c9b9f49ca26c9ceb21ba860 /run.c
parent0ae6046c5548636c0d642d76d3c8222375a744dd (diff)
downloadperl-fc0dc3b334ed07492841d4d27f3f4100c92588d2.tar.gz
deadcode removal
p4raw-id: //depot/perl@4034
Diffstat (limited to 'run.c')
-rw-r--r--run.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/run.c b/run.c
index be532046c6..decf04062b 100644
--- a/run.c
+++ b/run.c
@@ -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;