summaryrefslogtreecommitdiffstats
path: root/generic/tclCompile.h
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2022-03-31 15:59:11 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2022-03-31 15:59:11 (GMT)
commitde17b47b9cdeeda185381fe6ccab416af3954253 (patch)
tree3b5525ebfd7146d74e826fe27fe1aa8dfc2127f8 /generic/tclCompile.h
parent284dedf155f2929a52b5ccffbe13c1d55a643cb6 (diff)
downloadtcl-de17b47b9cdeeda185381fe6ccab416af3954253.zip
tcl-de17b47b9cdeeda185381fe6ccab416af3954253.tar.gz
tcl-de17b47b9cdeeda185381fe6ccab416af3954253.tar.bz2
more progress
Diffstat (limited to 'generic/tclCompile.h')
-rw-r--r--generic/tclCompile.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/generic/tclCompile.h b/generic/tclCompile.h
index 5f906ac..2173d6a 100644
--- a/generic/tclCompile.h
+++ b/generic/tclCompile.h
@@ -118,16 +118,16 @@ typedef struct ExceptionAux {
* one (see [for] next-clause) then we must
* not pick up the range when scanning for a
* target to continue to. */
- int stackDepth; /* The stack depth at the point where the
+ size_t stackDepth; /* The stack depth at the point where the
* exception range was created. This is used
* to calculate the number of POPs required to
* restore the stack to its prior state. */
- int expandTarget; /* The number of expansions expected on the
+ size_t expandTarget; /* The number of expansions expected on the
* auxData stack at the time the loop starts;
* we can't currently discard them except by
* doing INST_INVOKE_EXPANDED; this is a known
* problem. */
- int expandTargetDepth; /* The stack depth expected at the outermost
+ size_t expandTargetDepth; /* The stack depth expected at the outermost
* expansion within the loop. Not meaningful
* if there are no open expansions between the
* looping level and the point of jump
@@ -388,7 +388,7 @@ typedef struct CompileEnv {
* inefficient. If set to 2, that instruction
* should not be issued at all (by the generic
* part of the command compiler). */
- int expandCount; /* Number of INST_EXPAND_START instructions
+ size_t expandCount; /* Number of INST_EXPAND_START instructions
* encountered that have not yet been paired
* with a corresponding
* INST_INVOKE_EXPANDED. */