diff options
| author | nijtmans@users.sourceforge.net <jan.nijtmans> | 2012-04-23 13:49:01 (GMT) |
|---|---|---|
| committer | nijtmans@users.sourceforge.net <jan.nijtmans> | 2012-04-23 13:49:01 (GMT) |
| commit | 41d0037cdfcc6fb654957efb1199c1fe6547bd35 (patch) | |
| tree | 4c44f674724aef22717e0efab79ff4896b96ac00 /generic/tclAssembly.c | |
| parent | 2ffd0dcedadb031aa64ef561ad49397d64cfdee5 (diff) | |
| parent | 710e57182b245141bed978043b7a2621d5d097c1 (diff) | |
| download | tcl-41d0037cdfcc6fb654957efb1199c1fe6547bd35.zip tcl-41d0037cdfcc6fb654957efb1199c1fe6547bd35.tar.gz tcl-41d0037cdfcc6fb654957efb1199c1fe6547bd35.tar.bz2 | |
make some more internal tables const
Diffstat (limited to 'generic/tclAssembly.c')
| -rw-r--r-- | generic/tclAssembly.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclAssembly.c b/generic/tclAssembly.c index 5b32ab0..02144a1 100644 --- a/generic/tclAssembly.c +++ b/generic/tclAssembly.c @@ -492,7 +492,7 @@ TalInstDesc TalInstructionTable[] = { * The instructions must be in ascending order by numeric operation code. */ -static unsigned char NonThrowingByteCodes[] = { +static const unsigned char NonThrowingByteCodes[] = { INST_PUSH1, INST_PUSH4, INST_POP, INST_DUP, /* 1-4 */ INST_JUMP1, INST_JUMP4, /* 34-35 */ INST_END_CATCH, INST_PUSH_RESULT, INST_PUSH_RETURN_CODE, /* 70-72 */ |
