From a02b8151f9b69201233f9ca5774db280c34684de Mon Sep 17 00:00:00 2001 From: James Raspass Date: Sat, 11 Jun 2022 23:33:31 +0100 Subject: Add builtin::is_tainted Also tweak the implementation of the other two boolean builtins (is_bool & is_weak) to be slightly more efficient. --- opnames.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'opnames.h') diff --git a/opnames.h b/opnames.h index 5bf8f4903f..e269a9703c 100644 --- a/opnames.h +++ b/opnames.h @@ -428,10 +428,11 @@ typedef enum opcode { OP_REFTYPE = 411, OP_CEIL = 412, OP_FLOOR = 413, + OP_IS_TAINTED = 414, OP_max } opcode; -#define MAXO 414 +#define MAXO 415 #define OP_FREED MAXO /* the OP_IS_* macros are optimized to a simple range check because -- cgit v1.2.1