X-Git-Url: https://perl5.git.perl.org/perl5.git/blobdiff_plain/339aac22c2768aa840858c042e33fbf04d4f51ed..3268d169edcb7724b8e271f088667b341d87f4f6:/run.c diff --git a/run.c b/run.c index eb465da..352bfbc 100644 --- a/run.c +++ b/run.c @@ -30,27 +30,23 @@ * Now we are come to the lands where you were foaled, and every stone you * know. Run now! Hope is in speed!' --Gandalf * - * [p.600 of _The Lord of the Rings_, III/xi: "The Palantír"] + * [p.600 of _The Lord of the Rings_, III/xi: "The Palantír"] */ int Perl_runops_standard(pTHX) { - dVAR; - register OP *op = PL_op; - while ((PL_op = op = CALL_FPTR(op->op_ppaddr)(aTHX))) { + OP *op = PL_op; + PERL_DTRACE_PROBE_OP(op); + while ((PL_op = op = op->op_ppaddr(aTHX))) { + PERL_DTRACE_PROBE_OP(op); } + PERL_ASYNC_CHECK(); TAINT_NOT; return 0; } /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * - * ex: set ts=8 sts=4 sw=4 noet: + * ex: set ts=8 sts=4 sw=4 et: */