summaryrefslogtreecommitdiff
path: root/opnames.h
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2012-06-23 09:50:15 -0700
committerFather Chrysostomos <sprout@cpan.org>2012-06-29 00:20:56 -0700
commit6e64f32b089786e5be480ddf137d427c003b791b (patch)
tree98935083f604896fd3768d53dd3a54ee47e88eac /opnames.h
parentbb38a9e0f528ce1ecffe4f8c3c76984148803932 (diff)
downloadperl-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.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/opnames.h b/opnames.h
index 8b6a39a161..fd86d2a827 100644
--- a/opnames.h
+++ b/opnames.h
@@ -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.