diff options
author | Zefram <zefram@fysh.org> | 2020-02-05 07:43:14 +0000 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2020-03-12 22:34:26 -0600 |
commit | 02b85d3dab092d678cfc958a2dc252405333ed25 (patch) | |
tree | 106c8bfafd35b0d496133efad370973e7f2988d9 /opnames.h | |
parent | aa4119bb5f3a35b89e89d3504835f8da0d933e3d (diff) | |
download | perl-02b85d3dab092d678cfc958a2dc252405333ed25.tar.gz |
chained comparisons
Diffstat (limited to 'opnames.h')
-rw-r--r-- | opnames.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -412,10 +412,12 @@ typedef enum opcode { OP_LVAVREF = 395, OP_ANONCONST = 396, OP_ISA = 397, + OP_CMPCHAIN_AND = 398, + OP_CMPCHAIN_DUP = 399, OP_max } opcode; -#define MAXO 398 +#define MAXO 400 #define OP_FREED MAXO /* the OP_IS_* macros are optimized to a simple range check because |