summaryrefslogtreecommitdiffstats
path: root/generic/tclCompile.c
diff options
context:
space:
mode:
authorcvs2fossil <cvs2fossil>2000-03-30 04:36:09 (GMT)
committercvs2fossil <cvs2fossil>2000-03-30 04:36:09 (GMT)
commit222f26c3a660a3dd7d69b4e72a9e526c3e4861b5 (patch)
tree45e3bfe70409c0a79811234e3425c468fd87cc6c /generic/tclCompile.c
parent5f7fd015c795c68b50b9f34e28deb81c5f5549d2 (diff)
downloadtcl-scriptics_sc_2_0_b5_synthetic.zip
tcl-scriptics_sc_2_0_b5_synthetic.tar.gz
tcl-scriptics_sc_2_0_b5_synthetic.tar.bz2
Created branch scriptics-sc-2-0-b5-syntheticscriptics_sc_2_0_b5scriptics_sc_2_0_b5_synthetic
Diffstat (limited to 'generic/tclCompile.c')
-rw-r--r--generic/tclCompile.c21
1 files changed, 2 insertions, 19 deletions
diff --git a/generic/tclCompile.c b/generic/tclCompile.c
index 7a9f64d..ed7500f 100644
--- a/generic/tclCompile.c
+++ b/generic/tclCompile.c
@@ -10,7 +10,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.20 2000/03/30 04:36:11 hobbs Exp $
+ * RCS: @(#) $Id: tclCompile.c,v 1.19 1999/12/12 02:26:41 hobbs Exp $
*/
#include "tclInt.h"
@@ -553,26 +553,9 @@ TclCleanupByteCode(codePtr)
* only need to 1) decrement the ref counts of the LiteralEntry's in
* its literal array, 2) call the free procs for the auxiliary data
* items, and 3) free the ByteCode structure's heap object.
- *
- * The case for TCL_BYTECODE_PRECOMPILED (precompiled ByteCodes,
- * like those generated from tbcload) is special, as they doesn't
- * make use of the global literal table. They instead maintain
- * private references to their literals which must be decremented.
*/
- if (codePtr->flags & TCL_BYTECODE_PRECOMPILED) {
- register Tcl_Obj *objPtr;
-
- objArrayPtr = codePtr->objArrayPtr;
- for (i = 0; i < numLitObjects; i++) {
- objPtr = *objArrayPtr;
- if (objPtr) {
- Tcl_DecrRefCount(objPtr);
- }
- objArrayPtr++;
- }
- codePtr->numLitObjects = 0;
- } else if (interp != NULL) {
+ if (interp != NULL) {
/*
* If the interp has already been freed, then Tcl will have already
* forcefully released all the literals used by ByteCodes compiled