summaryrefslogtreecommitdiffstats
path: root/generic/tclAssembly.c
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2013-12-30 08:37:49 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2013-12-30 08:37:49 (GMT)
commit1749e8cdf33e8232f22acc08f9ce4301b00ba7eb (patch)
treea8680fa7474bcf0220ce6342a82e0a07e23ef8ff /generic/tclAssembly.c
parent96f3f9a79df5d9ce6166a00452822684e177b743 (diff)
downloadtcl-1749e8cdf33e8232f22acc08f9ce4301b00ba7eb.zip
tcl-1749e8cdf33e8232f22acc08f9ce4301b00ba7eb.tar.gz
tcl-1749e8cdf33e8232f22acc08f9ce4301b00ba7eb.tar.bz2
implement [namespace origin] in bytecode
Diffstat (limited to 'generic/tclAssembly.c')
-rw-r--r--generic/tclAssembly.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/generic/tclAssembly.c b/generic/tclAssembly.c
index b7bd1cd..89c286a 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},
+ {"originCmd", ASSEM_1BYTE, INST_ORIGIN_COMMAND, 1, 1},
{"over", ASSEM_OVER, INST_OVER, INT_MIN,-1-1},
{"pop", ASSEM_1BYTE, INST_POP, 1, 0},
{"pushReturnCode", ASSEM_1BYTE, INST_PUSH_RETURN_CODE, 0, 1},