diff options
author | Father Chrysostomos <sprout@cpan.org> | 2014-09-20 13:47:58 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2014-10-10 21:54:01 -0700 |
commit | 254da51f7d4c7ed280895a23be679ad865ed467d (patch) | |
tree | 111068417075df341f2ce5029524ab1a37188cb5 /opnames.h | |
parent | 6dbf0444b935d282757d46d944cd2e0eb84e986b (diff) | |
download | perl-254da51f7d4c7ed280895a23be679ad865ed467d.tar.gz |
Add refassign op type
Diffstat (limited to 'opnames.h')
-rw-r--r-- | opnames.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -393,10 +393,11 @@ typedef enum opcode { OP_INTROCV = 376, OP_CLONECV = 377, OP_PADRANGE = 378, + OP_REFASSIGN = 379, OP_max } opcode; -#define MAXO 379 +#define MAXO 380 #define OP_FREED MAXO /* the OP_IS_* macros are optimized to a simple range check because |