summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2012-02-15 12:02:48 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2012-02-15 12:02:48 (GMT)
commitef8842098dc6103ef6fc6fc7deb1b7e5395e85a2 (patch)
tree9e92fe62aa3daa6cfefd6a65813ad18546ab28aa /ChangeLog
parent3aa1601f2afddd655694ff5cd8541c0572736c3c (diff)
downloadtcl-ef8842098dc6103ef6fc6fc7deb1b7e5395e85a2.zip
tcl-ef8842098dc6103ef6fc6fc7deb1b7e5395e85a2.tar.gz
tcl-ef8842098dc6103ef6fc6fc7deb1b7e5395e85a2.tar.bz2
* generic/tclCompCmds.c (TclCompileLrangeCmd): Add compiler for
[lrange] with constant indices so we can take advantage of existing TCL_LIST_RANGE_IMM opcode. (TclCompileLindexCmd): Improve coverage of constant-index-style compliation using technique developed for [lrange] above.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog12
1 files changed, 9 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index e28342b..d29f6aa 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,8 +1,14 @@
2012-02-15 Donal K. Fellows <dkf@users.sf.net>
- * generic/tclCompCmds.c (TclCompileDictForCmd): [Bug 3487626]: Fix
- crash in compilation of [dict for] when its implementation command is
- used directly rather than through the ensemble.
+ * generic/tclCompCmds.c (TclCompileLrangeCmd): Add compiler for
+ [lrange] with constant indices so we can take advantage of existing
+ TCL_LIST_RANGE_IMM opcode.
+ (TclCompileLindexCmd): Improve coverage of constant-index-style
+ compliation using technique developed for [lrange] above.
+
+ (TclCompileDictForCmd): [Bug 3487626]: Fix crash in compilation of
+ [dict for] when its implementation command is used directly rather
+ than through the ensemble.
2012-02-09 Don Porter <dgp@users.sourceforge.net>