summaryrefslogtreecommitdiffstats
path: root/generic/tclExecute.c
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2007-08-22 14:04:16 (GMT)
committerdgp <dgp@users.sourceforge.net>2007-08-22 14:04:16 (GMT)
commit315e3662b6c8f926fb8539ae1f1e1aaae9145c27 (patch)
tree53f14c937a5b7904ac7c9290340ff093cbbb1f1b /generic/tclExecute.c
parentc55995199f49846a457d2c1acbe0c9363c14467c (diff)
downloadtcl-315e3662b6c8f926fb8539ae1f1e1aaae9145c27.zip
tcl-315e3662b6c8f926fb8539ae1f1e1aaae9145c27.tar.gz
tcl-315e3662b6c8f926fb8539ae1f1e1aaae9145c27.tar.bz2
Missing init in ParseExpr().
Label needs debug build exposure in TEBC.
Diffstat (limited to 'generic/tclExecute.c')
-rw-r--r--generic/tclExecute.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/generic/tclExecute.c b/generic/tclExecute.c
index d61131e..99d7144 100644
--- a/generic/tclExecute.c
+++ b/generic/tclExecute.c
@@ -12,7 +12,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclExecute.c,v 1.320 2007/08/22 13:30:45 msofer Exp $
+ * RCS: @(#) $Id: tclExecute.c,v 1.321 2007/08/22 14:04:16 dgp Exp $
*/
#include "tclInt.h"
@@ -1731,9 +1731,7 @@ TclExecuteByteCode(
}
case INST_PUSH1:
-#if !TCL_COMPILE_DEBUG
instPush1Peephole:
-#endif
PUSH_OBJECT(codePtr->objArrayPtr[TclGetUInt1AtPtr(pc+1)]);
TRACE_WITH_OBJ(("%u => ", TclGetInt1AtPtr(pc+1)), OBJ_AT_TOS);
pc += 2;