diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2014-02-02 14:42:12 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2014-02-02 14:42:12 (GMT) |
commit | 347264f196f57e2f4433f33dbaa6c8e2e4a2c83d (patch) | |
tree | fc5cf587462875a6acc982a5766096613af20bcc /generic/tclCompile.c | |
parent | 60e360f12b1c25a8e89f5893a564ca17d3b99217 (diff) | |
download | tcl-347264f196f57e2f4433f33dbaa6c8e2e4a2c83d.zip tcl-347264f196f57e2f4433f33dbaa6c8e2e4a2c83d.tar.gz tcl-347264f196f57e2f4433f33dbaa6c8e2e4a2c83d.tar.bz2 |
improve the disassemblydkf_bytecode_8_6_string_is
Diffstat (limited to 'generic/tclCompile.c')
-rw-r--r-- | generic/tclCompile.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/generic/tclCompile.c b/generic/tclCompile.c index 08a7a4c..c5d0107 100644 --- a/generic/tclCompile.c +++ b/generic/tclCompile.c @@ -644,7 +644,7 @@ InstructionDesc const tclInstructionTable[] = { {"tryCvtToBoolean", 1, +1, 0, {OPERAND_NONE}}, /* Try converting stktop to boolean if possible. No errors. * Stack: ... value => ... value isStrictBool */ - {"strclass", 2, 0, 1, {OPERAND_UINT1}}, + {"strclass", 2, 0, 1, {OPERAND_SCLS1}}, /* See if all the characters of the given string are a member of the * specified (by opnd) character class. Note that an empty string will * satisfy the class check (standard definition of "all"). @@ -5097,6 +5097,11 @@ FormatInstruction( } Tcl_AppendPrintfToObj(bufferObj, "%%v%u ", (unsigned) opnd); break; + case OPERAND_SCLS1: + opnd = TclGetUInt1AtPtr(pc+numBytes); numBytes++; + Tcl_AppendPrintfToObj(bufferObj, "%s ", + tclStringClassTable[opnd].name); + break; case OPERAND_NONE: default: break; |