This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
The rpeepp and peepp functions need a THX
authorSteffen Mueller <smueller@cpan.org>
Tue, 12 Feb 2013 17:26:44 +0000 (18:26 +0100)
committerSteffen Mueller <smueller@cpan.org>
Thu, 14 Feb 2013 16:37:12 +0000 (17:37 +0100)
pod/perlguts.pod

index 7cbaa36..79c1bbb 100644 (file)
@@ -1924,7 +1924,7 @@ per-subroutine or recursive stage, like this:
     static void my_peep(pTHX_ OP *o)
     {
         /* custom per-subroutine optimisation goes here */
-        prev_peepp(o);
+        prev_peepp(aTHX_ o);
         /* custom per-subroutine optimisation may also go here */
     }
     BOOT:
@@ -1938,7 +1938,7 @@ per-subroutine or recursive stage, like this:
         for(; o; o = o->op_next) {
             /* custom per-op optimisation goes here */
         }
-        prev_rpeepp(orig_o);
+        prev_rpeepp(aTHX_ orig_o);
     }
     BOOT:
         prev_rpeepp = PL_rpeepp;