X-Git-Url: https://perl5.git.perl.org/perl5.git/blobdiff_plain/f410a2119920dd04690025a349e79575cfb9c972..ac1dd572b7ca3bf48b942fd88551d451d38a884d:/run.c diff --git a/run.c b/run.c index 20c711a..01b5f06 100644 --- a/run.c +++ b/run.c @@ -30,14 +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; - while ((PL_op = CALL_FPTR(PL_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; @@ -48,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: */