summaryrefslogtreecommitdiff
path: root/opnames.h
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2012-08-02 22:11:08 -0700
committerFather Chrysostomos <sprout@cpan.org>2012-09-15 22:45:04 -0700
commit13f89586fe60fad5f4be3e8b89d5e605a7552658 (patch)
tree83bc7b0ad6e7e149f18bdc9ffeb99df55557259e /opnames.h
parentecf9c8b78fdc5245e639ddb2830e8e43cda480b9 (diff)
downloadperl-13f89586fe60fad5f4be3e8b89d5e605a7552658.tar.gz
Add clonecv op type
This will be used for cloning a ‘my’ sub on scope entry. I was going to use pp_padcv for this, but it would end up having a top-level if/else.
Diffstat (limited to 'opnames.h')
-rw-r--r--opnames.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/opnames.h b/opnames.h
index b99fb8f204..4b9bd8cab8 100644
--- a/opnames.h
+++ b/opnames.h
@@ -389,10 +389,11 @@ typedef enum opcode {
OP_FC = 372,
OP_PADCV = 373,
OP_INTROCV = 374,
+ OP_CLONECV = 375,
OP_max
} opcode;
-#define MAXO 375
+#define MAXO 376
#define OP_FREED MAXO
/* the OP_IS_* macros are optimized to a simple range check because