From 852c1a84672ff049d20d941d4df1decaabf3f3f0 Mon Sep 17 00:00:00 2001 From: "Paul \"LeoNerd\" Evans" Date: Tue, 30 Nov 2021 17:37:13 +0000 Subject: Direct optree implementations of builtin:: functions Turn builtin::true/false into OP_CONSTs Add a dedicated OP_ISBOOL, make an efficient op version of builtin::isbool() --- pp_proto.h | 1 + 1 file changed, 1 insertion(+) (limited to 'pp_proto.h') diff --git a/pp_proto.h b/pp_proto.h index 5f0b450a95..1210c80662 100644 --- a/pp_proto.h +++ b/pp_proto.h @@ -131,6 +131,7 @@ PERL_CALLCONV OP *Perl_pp_int(pTHX); 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_iter(pTHX); PERL_CALLCONV OP *Perl_pp_join(pTHX); PERL_CALLCONV OP *Perl_pp_kvaslice(pTHX); -- cgit v1.2.1