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