X-Git-Url: https://perl5.git.perl.org/perl5.git/blobdiff_plain/339aac22c2768aa840858c042e33fbf04d4f51ed..17605be794d9a6ceaaa8a5cc2afcf09dd2e8ccff:/run.c diff --git a/run.c b/run.c index eb465da..01b5f06 100644 --- a/run.c +++ b/run.c @@ -30,15 +30,17 @@ * 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; + OP_ENTRY_PROBE(OP_NAME(op)); + while ((PL_op = op = op->op_ppaddr(aTHX))) { + OP_ENTRY_PROBE(OP_NAME(op)); } TAINT_NOT; @@ -49,8 +51,8 @@ Perl_runops_standard(pTHX) * Local variables: * c-indentation-style: bsd * c-basic-offset: 4 - * indent-tabs-mode: t + * indent-tabs-mode: nil * End: * - * ex: set ts=8 sts=4 sw=4 noet: + * ex: set ts=8 sts=4 sw=4 et: */