diff options
author | Paul "LeoNerd" Evans <leonerd@leonerd.org.uk> | 2021-12-03 13:35:53 +0000 |
---|---|---|
committer | Paul Evans <leonerd@leonerd.org.uk> | 2021-12-04 11:39:22 +0000 |
commit | 6ac93b496cce8882a9d5494bfedb84f4da7e0aee (patch) | |
tree | 39715c51bfcaf9a851f141a929fb07ae4fc39773 /pp_proto.h | |
parent | 6ae4a6b7932dd745639ff335e83dbc87c63031a1 (diff) | |
download | perl-6ac93b496cce8882a9d5494bfedb84f4da7e0aee.tar.gz |
Add builtin:: funcs for handling weakrefs
Also, ensure that B::Deparse understands the OA_TARGMY optimisation of
OP_ISBOOL
Diffstat (limited to 'pp_proto.h')
-rw-r--r-- | pp_proto.h | 3 |
1 files changed, 3 insertions, 0 deletions
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); |