diff options
| author | donal.k.fellows@manchester.ac.uk <dkf> | 2012-11-01 18:06:09 (GMT) |
|---|---|---|
| committer | donal.k.fellows@manchester.ac.uk <dkf> | 2012-11-01 18:06:09 (GMT) |
| commit | d72c1c681d561ca1b22fb51b56d06856c12e8b4e (patch) | |
| tree | 73c6e63a58a37fcfd2efd533ae233d19a6aa0f0b /generic/tclAssembly.c | |
| parent | 64be38de51614d0fb9a2bf6b5d905022cb556c15 (diff) | |
| download | tcl-d72c1c681d561ca1b22fb51b56d06856c12e8b4e.zip tcl-d72c1c681d561ca1b22fb51b56d06856c12e8b4e.tar.gz tcl-d72c1c681d561ca1b22fb51b56d06856c12e8b4e.tar.bz2 | |
Added compilation of [tailcall]. Not a particularly efficient compilation though; it does not detect tailcall-of-self as a special case.
Diffstat (limited to 'generic/tclAssembly.c')
| -rw-r--r-- | generic/tclAssembly.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclAssembly.c b/generic/tclAssembly.c index eacaafe..f5f2469 100644 --- a/generic/tclAssembly.c +++ b/generic/tclAssembly.c @@ -514,9 +514,9 @@ static const unsigned char NonThrowingByteCodes[] = { INST_STR_MAP, /* 143 */ INST_STR_FIND, /* 144 */ INST_COROUTINE_NAME, /* 147 */ - INST_NS_CURRENT, /* 148 */ - INST_INFO_LEVEL_NUM, /* 149 */ - INST_RESOLVE_COMMAND /* 151 */ + INST_NS_CURRENT, /* 149 */ + INST_INFO_LEVEL_NUM, /* 150 */ + INST_RESOLVE_COMMAND /* 152 */ }; /* |
