diff options
author | jrfondren <41455523+jrfondren@users.noreply.github.com> | 2019-05-03 13:03:45 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-03 13:03:45 -0500 |
commit | 8cadeb960597a47a09100bdda05672f177d158d2 (patch) | |
tree | afe59c7bc9f5502801754e0f7fead84552a3d4e6 /compiler/cgendata.nim | |
parent | 6dfde0e931176405491987e14969f68d81957730 (diff) | |
parent | 515ab81477c1c3e4811c4fbf43a3ff81b87be970 (diff) | |
download | Nim-8cadeb960597a47a09100bdda05672f177d158d2.tar.gz |
Merge branch 'devel' into expand-amb-identifier-output
Diffstat (limited to 'compiler/cgendata.nim')
-rw-r--r-- | compiler/cgendata.nim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/cgendata.nim b/compiler/cgendata.nim index 4cd66b333..d9c3b7b86 100644 --- a/compiler/cgendata.nim +++ b/compiler/cgendata.nim @@ -70,6 +70,7 @@ type threadVarAccessed*: bool # true if the proc already accessed some threadvar hasCurFramePointer*: bool # true if _nimCurFrame var needed to recover after # exception is generated + noSafePoints*: bool # the proc doesn't use safe points in exception handling lastLineInfo*: TLineInfo # to avoid generating excessive 'nimln' statements currLineInfo*: TLineInfo # AST codegen will make this superfluous nestedTryStmts*: seq[tuple[n: PNode, inExcept: bool]] |