diff options
| author | dkf <donal.k.fellows@manchester.ac.uk> | 2012-10-29 12:03:03 (GMT) |
|---|---|---|
| committer | dkf <donal.k.fellows@manchester.ac.uk> | 2012-10-29 12:03:03 (GMT) |
| commit | 886fc6d1e98ed9bf51f884ae2e68d391c5033b3e (patch) | |
| tree | 8d660cdd778f0e2a9335fd376fb69ace61262c20 /generic/tclCompile.h | |
| parent | 78ed75a33905e55e8eabc5e41651556fbbc60fbc (diff) | |
| parent | 3cc94c1d69092f90d3aca7121cc57b3b6d4bbd2c (diff) | |
| download | tcl-886fc6d1e98ed9bf51f884ae2e68d391c5033b3e.zip tcl-886fc6d1e98ed9bf51f884ae2e68d391c5033b3e.tar.gz tcl-886fc6d1e98ed9bf51f884ae2e68d391c5033b3e.tar.bz2 | |
Merge corrected [yield] compilation. Many thanks to Miguel Sofer for help.
Diffstat (limited to 'generic/tclCompile.h')
| -rw-r--r-- | generic/tclCompile.h | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/generic/tclCompile.h b/generic/tclCompile.h index 86a0f77..fcff46c 100644 --- a/generic/tclCompile.h +++ b/generic/tclCompile.h @@ -681,16 +681,19 @@ typedef struct ByteCode { #define INST_DICT_RECOMBINE_STK 139 #define INST_DICT_RECOMBINE_IMM 140 -/* For compilation of basic information operations */ -#define INST_NS_CURRENT 141 +/* For operations to do with coroutines */ +#define INST_YIELD 141 #define INST_COROUTINE_NAME 142 -#define INST_INFO_LEVEL_NUM 143 -#define INST_INFO_LEVEL_ARGS 144 -#define INST_RESOLVE_COMMAND 145 -#define INST_TCLOO_SELF 146 + +/* For compilation of basic information operations */ +#define INST_NS_CURRENT 143 +#define INST_INFO_LEVEL_NUM 144 +#define INST_INFO_LEVEL_ARGS 145 +#define INST_RESOLVE_COMMAND 146 +#define INST_TCLOO_SELF 147 /* The last opcode */ -#define LAST_INST_OPCODE 146 +#define LAST_INST_OPCODE 147 /* * Table describing the Tcl bytecode instructions: their name (for displaying |
