summaryrefslogtreecommitdiff
path: root/opnames.h
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2012-07-26 18:21:02 -0700
committerFather Chrysostomos <sprout@cpan.org>2012-09-15 22:45:03 -0700
commitecf9c8b78fdc5245e639ddb2830e8e43cda480b9 (patch)
treed17ac0ac0b8d120a1e27b229acdd06111950fe1d /opnames.h
parent10342479afca0484c66269733fcc2f4a1fbabbb7 (diff)
downloadperl-ecf9c8b78fdc5245e639ddb2830e8e43cda480b9.tar.gz
Add introcv op type
This will be used for introducing ‘my’ subs on scope entry, by turning off the stale flag.
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 d8c9f64e0c..b99fb8f204 100644
--- a/opnames.h
+++ b/opnames.h
@@ -388,10 +388,11 @@ typedef enum opcode {
OP_RUNCV = 371,
OP_FC = 372,
OP_PADCV = 373,
+ OP_INTROCV = 374,
OP_max
} opcode;
-#define MAXO 374
+#define MAXO 375
#define OP_FREED MAXO
/* the OP_IS_* macros are optimized to a simple range check because