X-Git-Url: https://perl5.git.perl.org/perl5.git/blobdiff_plain/cdad3b53476fc75fca269751d978ddef3278f18b..5751998882d1db1c0f62a32a0b16e58176928a35:/run.c diff --git a/run.c b/run.c index 7c1d0aa..1a62e9d 100644 --- a/run.c +++ b/run.c @@ -36,21 +36,17 @@ 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: */