summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2007-09-09 16:51:15 (GMT)
committerdgp <dgp@users.sourceforge.net>2007-09-09 16:51:15 (GMT)
commit661d0c07c6af17979d24832f834aae99e2377dac (patch)
treee92e8e7a5af578b7fbfc1a01740d384a0548acfa /ChangeLog
parent348e41c66d05f58ef37fb1307b90d49a09b112db (diff)
downloadtcl-661d0c07c6af17979d24832f834aae99e2377dac.zip
tcl-661d0c07c6af17979d24832f834aae99e2377dac.tar.gz
tcl-661d0c07c6af17979d24832f834aae99e2377dac.tar.bz2
* generic/tclCompCmds.c: Use the new INST_REVERSE instruction
* tests/mathop.test: to correct the compiled versions of math operator commands. [Bug 1724437]. * generic/tclCompile.c: New bytecode instruction INST_REVERSE to * generic/tclCompile.h: reverse the order of N items at the top of * generic/tclExecute.c: stack.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog8
1 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 8eda2b4..909088f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,13 @@
2007-09-09 Don Porter <dgp@users.sourceforge.net>
+ * generic/tclCompCmds.c: Use the new INST_REVERSE instruction
+ * tests/mathop.test: to correct the compiled versions of math
+ operator commands. [Bug 1724437].
+
+ * generic/tclCompile.c: New bytecode instruction INST_REVERSE to
+ * generic/tclCompile.h: reverse the order of N items at the top of
+ * generic/tclExecute.c: stack.
+
* generic/tclCompCmds.c (TclCompilePowOpCmd): Make a separate
routine to compile ** to account for its different associativity.