diff options
author | Miguel Sofer <miguel.sofer@gmail.com> | 2007-08-22 14:31:02 (GMT) |
---|---|---|
committer | Miguel Sofer <miguel.sofer@gmail.com> | 2007-08-22 14:31:02 (GMT) |
commit | 5a8f916a31c803b4dcb12854463ed5227cbdf36f (patch) | |
tree | 08fb5ebd28905cb4783f43a450cc20eb78886536 /generic/tclExecute.c | |
parent | 315e3662b6c8f926fb8539ae1f1e1aaae9145c27 (diff) | |
download | tcl-5a8f916a31c803b4dcb12854463ed5227cbdf36f.zip tcl-5a8f916a31c803b4dcb12854463ed5227cbdf36f.tar.gz tcl-5a8f916a31c803b4dcb12854463ed5227cbdf36f.tar.bz2 |
* generic/tclExecute.c (TEBC): disable the new shortcut to frequent
INSTs for debug builds. REVERTED (collision with alternative fix)
Diffstat (limited to 'generic/tclExecute.c')
-rw-r--r-- | generic/tclExecute.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/generic/tclExecute.c b/generic/tclExecute.c index 99d7144..07de1b6 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.321 2007/08/22 14:04:16 dgp Exp $ + * RCS: @(#) $Id: tclExecute.c,v 1.322 2007/08/22 14:31:04 msofer Exp $ */ #include "tclInt.h" @@ -1662,13 +1662,11 @@ TclExecuteByteCode( * reduces total obj size. */ -#if !TCL_COMPILE_DEBUG if (*pc == INST_LOAD_SCALAR1) { goto instLoadScalar1; } else if (*pc == INST_PUSH1) { goto instPush1Peephole; } -#endif switch (*pc) { case INST_RETURN_IMM: { |