diff options
| author | mig <mig> | 2013-12-10 11:38:17 (GMT) |
|---|---|---|
| committer | mig <mig> | 2013-12-10 11:38:17 (GMT) |
| commit | 8c3feca238b2c1354a1511bdf0fcff8dcf957aa9 (patch) | |
| tree | d8e1081fccdbf33af9b7ef5d71a3c28a89575b30 /generic/tclCompile.c | |
| parent | 43d93b9366c0fc8368f5a3f66208d788391f87b2 (diff) | |
| download | tcl-8c3feca238b2c1354a1511bdf0fcff8dcf957aa9.zip tcl-8c3feca238b2c1354a1511bdf0fcff8dcf957aa9.tar.gz tcl-8c3feca238b2c1354a1511bdf0fcff8dcf957aa9.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}} }; |
