diff options
author | dgp <dgp@users.sourceforge.net> | 2007-09-09 17:02:33 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2007-09-09 17:02:33 (GMT) |
commit | c751a324c1745d7c554ff34f1a85d4d18c2dfa86 (patch) | |
tree | 87c32cf189db141ca81a5d604924f8c13192da96 /generic | |
parent | 661d0c07c6af17979d24832f834aae99e2377dac (diff) | |
download | tcl-c751a324c1745d7c554ff34f1a85d4d18c2dfa86.zip tcl-c751a324c1745d7c554ff34f1a85d4d18c2dfa86.tar.gz tcl-c751a324c1745d7c554ff34f1a85d4d18c2dfa86.tar.bz2 |
Correct stack effect value in table.
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tclCompile.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclCompile.c b/generic/tclCompile.c index 7ccf919..35b4a75 100644 --- a/generic/tclCompile.c +++ b/generic/tclCompile.c @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclCompile.c,v 1.130 2007/09/09 16:51:18 dgp Exp $ + * RCS: @(#) $Id: tclCompile.c,v 1.131 2007/09/09 17:02:33 dgp Exp $ */ #include "tclInt.h" @@ -383,7 +383,7 @@ InstructionDesc tclInstructionTable[] = { * index op1. Leaves the namespace on stack. */ {"syntax", 9, -1, 2, {OPERAND_INT4, OPERAND_UINT4}}, /* Compiled bytecodes to signal syntax error. */ - {"reverse", 5, +1, 1, {OPERAND_UINT4}}, + {"reverse", 5, 0, 1, {OPERAND_UINT4}}, /* Reverse the order of the arg elements at the top of stack */ {0} }; |