diff options
author | Father Chrysostomos <sprout@cpan.org> | 2010-11-02 20:18:15 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2010-11-02 21:32:33 -0700 |
commit | 6342d5c50ab0a9493ebc0908c3a6ec88d18e183b (patch) | |
tree | caeb2446493b1630b58b4192f7b6809ea1b0ced3 /opnames.h | |
parent | 42b824d2b554088191c83ebebdc0d1598f5a4d9a (diff) | |
download | perl-6342d5c50ab0a9493ebc0908c3a6ec88d18e183b.tar.gz |
Add transr op type
for the upcoming y///r feature. There are not enough flag bits,
hence the extra type.
Diffstat (limited to 'opnames.h')
-rw-r--r-- | opnames.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -384,10 +384,11 @@ typedef enum opcode { OP_REACH = 366, OP_RKEYS = 367, OP_RVALUES = 368, + OP_TRANSR = 369, OP_max } opcode; -#define MAXO 369 +#define MAXO 370 #define OP_phoney_INPUT_ONLY -1 #define OP_phoney_OUTPUT_ONLY -2 |