From a9f19d0f50fa6980e7bdbcf691d81e40b2669a17 Mon Sep 17 00:00:00 2001 From: Father Chrysostomos Date: Sat, 3 Jan 2015 22:34:28 -0800 Subject: Add OP_IS_INFIX_BIT A convenience macro that a forthcoming commit will use. --- opnames.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'opnames.h') diff --git a/opnames.h b/opnames.h index e68c8ca6a1..c225ac42c0 100644 --- a/opnames.h +++ b/opnames.h @@ -436,4 +436,7 @@ typedef enum opcode { #define OP_IS_DIRHOP(op) \ ((op) >= OP_READDIR && (op) <= OP_CLOSEDIR) +#define OP_IS_INFIX_BIT(op) \ + ((op) >= OP_BIT_AND && (op) <= OP_SBIT_OR) + /* ex: set ro: */ -- cgit v1.2.1