This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Update the todo entry for makedef.pl duplicating C conditional compilation.
[perl5.git] / run.c
diff --git a/run.c b/run.c
index be280ee..7c1d0aa 100644 (file)
--- a/run.c
+++ b/run.c
  *  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;