diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2013-10-08 09:02:50 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2013-10-08 09:02:50 (GMT) |
commit | 784987f7c11d9990ed7e2db04d85d42f177bdefd (patch) | |
tree | 597e46323b2e5e99c4ce5b7637219be985773d6b /generic/tclCompile.h | |
parent | fb703e49177297d9c7ae9c6eb5bdaefe338838b2 (diff) | |
download | tcl-784987f7c11d9990ed7e2db04d85d42f177bdefd.zip tcl-784987f7c11d9990ed7e2db04d85d42f177bdefd.tar.gz tcl-784987f7c11d9990ed7e2db04d85d42f177bdefd.tar.bz2 |
Working towards better handling of stack balance with break and continue exceptions.
Diffstat (limited to 'generic/tclCompile.h')
-rw-r--r-- | generic/tclCompile.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/generic/tclCompile.h b/generic/tclCompile.h index 5660055..a39e0f1 100644 --- a/generic/tclCompile.h +++ b/generic/tclCompile.h @@ -1021,6 +1021,7 @@ MODULE_SCOPE void TclDeleteLiteralTable(Tcl_Interp *interp, LiteralTable *tablePtr); MODULE_SCOPE void TclEmitForwardJump(CompileEnv *envPtr, TclJumpType jumpType, JumpFixup *jumpFixupPtr); +MODULE_SCOPE void TclEmitInvoke(CompileEnv *envPtr, int opcode, ...); MODULE_SCOPE ExceptionRange * TclGetExceptionRangeForPc(unsigned char *pc, int catchOnly, ByteCode *codePtr); MODULE_SCOPE void TclExpandJumpFixupArray(JumpFixupArray *fixupArrayPtr); |