summaryrefslogtreecommitdiff
path: root/opnames.h
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2014-09-29 21:43:53 -0700
committerFather Chrysostomos <sprout@cpan.org>2014-10-11 00:10:13 -0700
commit2882b3ff194c533cea5909d6f11ee4a911ef0f9e (patch)
tree7121e93147d6f220f05b3e7773adb1d6653f3257 /opnames.h
parent4b6cf48bb4558c51745baf834133575633be736a (diff)
downloadperl-2882b3ff194c533cea5909d6f11ee4a911ef0f9e.tar.gz
Add lvavref op type
This will be used for slurpy array ref assignments. \(@a) = \(@b) will make @a share the same elements as @b.
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 3a9be48220..de230b5a24 100644
--- a/opnames.h
+++ b/opnames.h
@@ -396,10 +396,11 @@ typedef enum opcode {
OP_REFASSIGN = 379,
OP_LVREF = 380,
OP_LVREFSLICE = 381,
+ OP_LVAVREF = 382,
OP_max
} opcode;
-#define MAXO 382
+#define MAXO 383
#define OP_FREED MAXO
/* the OP_IS_* macros are optimized to a simple range check because