diff options
Diffstat (limited to 'generic/tclCompile.h')
-rw-r--r-- | generic/tclCompile.h | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/generic/tclCompile.h b/generic/tclCompile.h index a7efb6b..935f5a7 100644 --- a/generic/tclCompile.h +++ b/generic/tclCompile.h @@ -7,7 +7,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclCompile.h,v 1.13 2000/05/23 22:10:51 ericm Exp $ + * RCS: @(#) $Id: tclCompile.h,v 1.14 2000/05/26 08:53:42 hobbs Exp $ */ #ifndef _TCLCOMPILATION @@ -495,12 +495,15 @@ typedef struct ByteCode { #define INST_PUSH_RETURN_CODE 72 /* Opcodes 73 to 74 */ -#define INST_STREQ 73 -#define INST_STRNEQ 74 -#define INST_STRLEN 75 +#define INST_STR_EQ 73 +#define INST_STR_NEQ 74 +#define INST_STR_CMP 75 +#define INST_STR_LEN 76 +#define INST_STR_INDEX 77 +#define INST_STR_MATCH 78 /* The last opcode */ -#define LAST_INST_OPCODE 75 +#define LAST_INST_OPCODE 78 /* * Table describing the Tcl bytecode instructions: their name (for |