This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
mktables: Make generated files use hex code points
[perl5.git] / run.c
diff --git a/run.c b/run.c
index be280ee..368ef03 100644 (file)
--- a/run.c
+++ b/run.c
@@ -37,8 +37,8 @@ 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;