diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2012-11-05 14:34:36 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2012-11-05 14:34:36 (GMT) |
commit | cd1f27f0cf22ec6b5b83f2fd48c1ba93e5c27be2 (patch) | |
tree | 72d036a8e1b318a022447f968b7a58b12d6e9598 /generic/tclCompile.h | |
parent | 259635cd9b7b5e6be9e1bc44a5d2a7d3a2536743 (diff) | |
download | tcl-cd1f27f0cf22ec6b5b83f2fd48c1ba93e5c27be2.zip tcl-cd1f27f0cf22ec6b5b83f2fd48c1ba93e5c27be2.tar.gz tcl-cd1f27f0cf22ec6b5b83f2fd48c1ba93e5c27be2.tar.bz2 |
Added compilation of [array exists], [array set] and [array unset]. Fixed a whole bunch of issues with opcode issuing that were causing problems with stack depth calculations.merge_to_trunk
Diffstat (limited to 'generic/tclCompile.h')
-rw-r--r-- | generic/tclCompile.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/generic/tclCompile.h b/generic/tclCompile.h index b080d33..3302f9b 100644 --- a/generic/tclCompile.h +++ b/generic/tclCompile.h @@ -705,8 +705,14 @@ typedef struct ByteCode { #define INST_TCLOO_NS 157 #define INST_TCLOO_IS_OBJECT 158 +/* For compilation of [array] subcommands */ +#define INST_ARRAY_EXISTS_STK 159 +#define INST_ARRAY_EXISTS_IMM 160 +#define INST_ARRAY_MAKE_STK 161 +#define INST_ARRAY_MAKE_IMM 162 + /* The last opcode */ -#define LAST_INST_OPCODE 158 +#define LAST_INST_OPCODE 162 /* * Table describing the Tcl bytecode instructions: their name (for displaying |