diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2012-12-31 02:39:40 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2012-12-31 02:39:40 (GMT) |
commit | 42b09bbed6f6321e1ef37e138d47cb0a508d3f93 (patch) | |
tree | d6877b1ccb35b9e6c72036640ff67ae649d83c1f /generic/tclCompile.h | |
parent | e0230df857c0b68a377034f56e3aa424feceb5a1 (diff) | |
download | tcl-42b09bbed6f6321e1ef37e138d47cb0a508d3f93.zip tcl-42b09bbed6f6321e1ef37e138d47cb0a508d3f93.tar.gz tcl-42b09bbed6f6321e1ef37e138d47cb0a508d3f93.tar.bz2 |
Working towards more efficient treatment of non-bytecoded ensemble subcommands.
Diffstat (limited to 'generic/tclCompile.h')
-rw-r--r-- | generic/tclCompile.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/generic/tclCompile.h b/generic/tclCompile.h index 3302f9b..4d8ed65 100644 --- a/generic/tclCompile.h +++ b/generic/tclCompile.h @@ -711,8 +711,10 @@ typedef struct ByteCode { #define INST_ARRAY_MAKE_STK 161 #define INST_ARRAY_MAKE_IMM 162 +#define INST_INVOKE_REPLACE 163 + /* The last opcode */ -#define LAST_INST_OPCODE 162 +#define LAST_INST_OPCODE 163 /* * Table describing the Tcl bytecode instructions: their name (for displaying |