summaryrefslogtreecommitdiffstats
path: root/generic/tclCompile.c
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2013-06-05 20:55:29 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2013-06-05 20:55:29 (GMT)
commit24d2ee6791fc464e86c2aecbd60376628796af06 (patch)
tree1fddacca362795def99c383890d4e8e469d33608 /generic/tclCompile.c
parent936acef29cdd2e9fce4a278453e2b2150c5b9c96 (diff)
downloadtcl-24d2ee6791fc464e86c2aecbd60376628796af06.zip
tcl-24d2ee6791fc464e86c2aecbd60376628796af06.tar.gz
tcl-24d2ee6791fc464e86c2aecbd60376628796af06.tar.bz2
Corrected wrong information about instruction width that was causing an optimizer crash.
Diffstat (limited to 'generic/tclCompile.c')
-rw-r--r--generic/tclCompile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclCompile.c b/generic/tclCompile.c
index 4a989c7..572f660 100644
--- a/generic/tclCompile.c
+++ b/generic/tclCompile.c
@@ -431,7 +431,7 @@ InstructionDesc const tclInstructionTable[] = {
/* Map variable contents back into a dictionary in a variable. Part of
* [dict with].
* Stack: ... dictVarName path keyList => ... */
- {"dictRecombineImm", 1, -2, 1, {OPERAND_LVT4}},
+ {"dictRecombineImm", 5, -2, 1, {OPERAND_LVT4}},
/* Map variable contents back into a dictionary in the local variable
* indicated by the LVT index. Part of [dict with].
* Stack: ... path keyList => ... */