diff options
author | Father Chrysostomos <sprout@cpan.org> | 2012-06-23 09:50:15 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2012-06-29 00:20:56 -0700 |
commit | 6e64f32b089786e5be480ddf137d427c003b791b (patch) | |
tree | 98935083f604896fd3768d53dd3a54ee47e88eac /opnames.h | |
parent | bb38a9e0f528ce1ecffe4f8c3c76984148803932 (diff) | |
download | perl-6e64f32b089786e5be480ddf137d427c003b791b.tar.gz |
Add OP_FREED op type
This is a dummy op type that should never be seen by any code except
op allocation code (to come).
So it is not in the usual list of opcodes, but is #defined outside the
range valid of opcodes.
Diffstat (limited to 'opnames.h')
-rw-r--r-- | opnames.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -392,6 +392,7 @@ typedef enum opcode { } opcode; #define MAXO 374 +#define OP_FREED MAXO /* the OP_IS_* macros are optimized to a simple range check because all the member OPs are contiguous in regen/opcodes table. |