diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2014-01-10 15:58:41 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2014-01-10 15:58:41 (GMT) |
commit | c3c6e803684022dcc788ddbfc4a59a6d0dfde102 (patch) | |
tree | e059ae617b58faac8fe25b5c8b71697b13b788df /generic/tclAssembly.c | |
parent | acf1cebeab93607fc83206e77534b5fada8726ef (diff) | |
download | tcl-c3c6e803684022dcc788ddbfc4a59a6d0dfde102.zip tcl-c3c6e803684022dcc788ddbfc4a59a6d0dfde102.tar.gz tcl-c3c6e803684022dcc788ddbfc4a59a6d0dfde102.tar.bz2 |
a different approach
Diffstat (limited to 'generic/tclAssembly.c')
-rw-r--r-- | generic/tclAssembly.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/generic/tclAssembly.c b/generic/tclAssembly.c index 89c286a..70379c6 100644 --- a/generic/tclAssembly.c +++ b/generic/tclAssembly.c @@ -437,6 +437,7 @@ static const TalInstDesc TalInstructionTable[] = { {"nop", ASSEM_1BYTE, INST_NOP, 0, 0}, {"not", ASSEM_1BYTE, INST_LNOT, 1, 1}, {"nsupvar", ASSEM_LVT4, INST_NSUPVAR, 2, 1}, + {"numericType", ASSEM_1BYTE, INST_NUM_TYPE, 1, 1}, {"originCmd", ASSEM_1BYTE, INST_ORIGIN_COMMAND, 1, 1}, {"over", ASSEM_OVER, INST_OVER, INT_MIN,-1-1}, {"pop", ASSEM_1BYTE, INST_POP, 1, 0}, @@ -516,7 +517,8 @@ static const unsigned char NonThrowingByteCodes[] = { INST_RESOLVE_COMMAND, /* 154 */ INST_STR_TRIM, INST_STR_TRIM_LEFT, INST_STR_TRIM_RIGHT, /* 166-168 */ INST_CONCAT_STK, /* 169 */ - INST_STR_UPPER, INST_STR_LOWER, INST_STR_TITLE /* 170-172 */ + INST_STR_UPPER, INST_STR_LOWER, INST_STR_TITLE, /* 170-172 */ + INST_NUM_TYPE /* 180 */ }; /* |