From 6ac93b496cce8882a9d5494bfedb84f4da7e0aee Mon Sep 17 00:00:00 2001 From: "Paul \"LeoNerd\" Evans" Date: Fri, 3 Dec 2021 13:35:53 +0000 Subject: Add builtin:: funcs for handling weakrefs Also, ensure that B::Deparse understands the OA_TARGMY optimisation of OP_ISBOOL --- pp_proto.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'pp_proto.h') diff --git a/pp_proto.h b/pp_proto.h index 1210c80662..ebae2e9cf2 100644 --- a/pp_proto.h +++ b/pp_proto.h @@ -132,6 +132,7 @@ PERL_CALLCONV OP *Perl_pp_introcv(pTHX); PERL_CALLCONV OP *Perl_pp_ioctl(pTHX); PERL_CALLCONV OP *Perl_pp_isa(pTHX); PERL_CALLCONV OP *Perl_pp_isbool(pTHX); +PERL_CALLCONV OP *Perl_pp_isweak(pTHX); PERL_CALLCONV OP *Perl_pp_iter(pTHX); PERL_CALLCONV OP *Perl_pp_join(pTHX); PERL_CALLCONV OP *Perl_pp_kvaslice(pTHX); @@ -298,11 +299,13 @@ PERL_CALLCONV OP *Perl_pp_unpack(pTHX); PERL_CALLCONV OP *Perl_pp_unshift(pTHX); PERL_CALLCONV OP *Perl_pp_unstack(pTHX); PERL_CALLCONV OP *Perl_pp_untie(pTHX); +PERL_CALLCONV OP *Perl_pp_unweaken(pTHX); PERL_CALLCONV OP *Perl_pp_vec(pTHX); PERL_CALLCONV OP *Perl_pp_wait(pTHX); PERL_CALLCONV OP *Perl_pp_waitpid(pTHX); PERL_CALLCONV OP *Perl_pp_wantarray(pTHX); PERL_CALLCONV OP *Perl_pp_warn(pTHX); +PERL_CALLCONV OP *Perl_pp_weaken(pTHX); PERL_CALLCONV OP *Perl_pp_xor(pTHX); PERL_CALLCONV OP *Perl_unimplemented_op(pTHX); -- cgit v1.2.1