diff options
author | dgp <dgp@users.sourceforge.net> | 2013-07-16 14:07:41 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2013-07-16 14:07:41 (GMT) |
commit | 2d98ee0f477ef33bb0a8473efbd44ef203463c32 (patch) | |
tree | 15957bc4d2ba373dff4005afaf8205a28709a915 /generic/tclCompile.h | |
parent | 59d8c6ba4b9cc7f77258e0cdae09b6d786f19fc4 (diff) | |
download | tcl-2d98ee0f477ef33bb0a8473efbd44ef203463c32.zip tcl-2d98ee0f477ef33bb0a8473efbd44ef203463c32.tar.gz tcl-2d98ee0f477ef33bb0a8473efbd44ef203463c32.tar.bz2 |
Eliminate the litInfo table and all the code tending to its care and feeding.
The pc -> command index mapping function it provided can be achieved using
other data already in the ByteCode struct.
Diffstat (limited to 'generic/tclCompile.h')
-rw-r--r-- | generic/tclCompile.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/generic/tclCompile.h b/generic/tclCompile.h index b94bd93..f70f8f7 100644 --- a/generic/tclCompile.h +++ b/generic/tclCompile.h @@ -175,7 +175,6 @@ typedef struct CmdLocation { typedef struct ECL { int srcOffset; /* Command location to find the entry. */ - int invokePc; int nline; /* Number of words in the command */ int *line; /* Line information for all words in the * command. */ @@ -194,13 +193,6 @@ typedef struct ExtCmdLoc { ECL *loc; /* Command word locations (lines). */ int nloc; /* Number of allocated entries in 'loc'. */ int nuloc; /* Number of used entries in 'loc'. */ - Tcl_HashTable litInfo; /* Indexed by bytecode 'PC', to have the - * information accessible per command and - * argument, not per whole bytecode. Value is - * index of command in 'loc', giving us the - * literals to associate with line information - * as command argument, see - * TclArgumentBCEnter() */ } ExtCmdLoc; /* |