diff options
author | mig <mig> | 2013-12-10 11:38:17 (GMT) |
---|---|---|
committer | mig <mig> | 2013-12-10 11:38:17 (GMT) |
commit | 1adbdd114bfb98364768cbf8e6b2d5c27700f392 (patch) | |
tree | d8e1081fccdbf33af9b7ef5d71a3c28a89575b30 /generic/tclCompile.c | |
parent | 2e16688b510696d61dc1a6294a40e33ad4496fec (diff) | |
download | tcl-1adbdd114bfb98364768cbf8e6b2d5c27700f392.zip tcl-1adbdd114bfb98364768cbf8e6b2d5c27700f392.tar.gz tcl-1adbdd114bfb98364768cbf8e6b2d5c27700f392.tar.bz2 |
new INST_LMAP_COLLECT, speeds up lmap and eliminates the need for a temp var
Diffstat (limited to 'generic/tclCompile.c')
-rw-r--r-- | generic/tclCompile.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/generic/tclCompile.c b/generic/tclCompile.c index 7cd9796..c7b7875 100644 --- a/generic/tclCompile.c +++ b/generic/tclCompile.c @@ -554,6 +554,7 @@ InstructionDesc const tclInstructionTable[] = { {"foreach_step", 1, 0, 0, {OPERAND_NONE}}, /* "Step" or begin next iteration of foreach loop. */ {"foreach_end", 1, 0, 0, {OPERAND_NONE}}, + {"lmap_collect", 1, 0, 0, {OPERAND_NONE}}, {NULL, 0, 0, 0, {OPERAND_NONE}} }; |