X-Git-Url: https://perl5.git.perl.org/perl5.git/blobdiff_plain/20b7effb9761caf5aee8475b6a6d731b40c80cd7..156759b6c1970a6b29d93de06d3f87625af28c18:/run.c diff --git a/run.c b/run.c index 8f0224a..352bfbc 100644 --- a/run.c +++ b/run.c @@ -37,9 +37,9 @@ int Perl_runops_standard(pTHX) { OP *op = PL_op; - OP_ENTRY_PROBE(OP_NAME(op)); + PERL_DTRACE_PROBE_OP(op); while ((PL_op = op = op->op_ppaddr(aTHX))) { - OP_ENTRY_PROBE(OP_NAME(op)); + PERL_DTRACE_PROBE_OP(op); } PERL_ASYNC_CHECK(); @@ -48,11 +48,5 @@ Perl_runops_standard(pTHX) } /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */