X-Git-Url: https://perl5.git.perl.org/perl5.git/blobdiff_plain/16c915390a3e066a7c2c13fac10d8dd8ebfea0c6..83bcbc6111ed334f239986aa6a0f00a47b523a0c:/run.c diff --git a/run.c b/run.c index 368ef03..1a62e9d 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; + OP *op = PL_op; + OP_ENTRY_PROBE(OP_NAME(op)); while ((PL_op = op = op->op_ppaddr(aTHX))) { + OP_ENTRY_PROBE(OP_NAME(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: */