X-Git-Url: https://perl5.git.perl.org/perl5.git/blobdiff_plain/f410a2119920dd04690025a349e79575cfb9c972..4066e594fe94825b10f07a4bb94dfb8072e3405f:/run.c diff --git a/run.c b/run.c index 20c711a..7c1d0aa 100644 --- a/run.c +++ b/run.c @@ -30,14 +30,15 @@ * 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))) { + register OP *op = PL_op; + while ((PL_op = op = op->op_ppaddr(aTHX))) { } TAINT_NOT;