diff options
author | Aaron Crane <arc@cpan.org> | 2015-06-11 17:24:13 +0100 |
---|---|---|
committer | Aaron Crane <arc@cpan.org> | 2015-07-13 14:08:34 +0100 |
commit | 262309092c2de925e7ae4a527174f8dc2a0ec7b7 (patch) | |
tree | fc20e8ab0b42c87c232e3b233556fafe2ac85076 /opnames.h | |
parent | de6cb0abd243e5772b9783a2cbeef5755a8267d6 (diff) | |
download | perl-262309092c2de925e7ae4a527174f8dc2a0ec7b7.tar.gz |
Delete experimental autoderef feature
Diffstat (limited to 'opnames.h')
-rw-r--r-- | opnames.h | 29 |
1 files changed, 13 insertions, 16 deletions
@@ -395,25 +395,22 @@ typedef enum opcode { OP_LOCK = 378, OP_ONCE = 379, OP_CUSTOM = 380, - OP_REACH = 381, - OP_RKEYS = 382, - OP_RVALUES = 383, - OP_COREARGS = 384, - OP_RUNCV = 385, - OP_FC = 386, - OP_PADCV = 387, - OP_INTROCV = 388, - OP_CLONECV = 389, - OP_PADRANGE = 390, - OP_REFASSIGN = 391, - OP_LVREF = 392, - OP_LVREFSLICE = 393, - OP_LVAVREF = 394, - OP_ANONCONST = 395, + OP_COREARGS = 381, + OP_RUNCV = 382, + OP_FC = 383, + OP_PADCV = 384, + OP_INTROCV = 385, + OP_CLONECV = 386, + OP_PADRANGE = 387, + OP_REFASSIGN = 388, + OP_LVREF = 389, + OP_LVREFSLICE = 390, + OP_LVAVREF = 391, + OP_ANONCONST = 392, OP_max } opcode; -#define MAXO 396 +#define MAXO 393 #define OP_FREED MAXO /* the OP_IS_* macros are optimized to a simple range check because |