summary refs log tree commit diff stats
path: root/compiler/cgendata.nim
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2014-02-16 11:36:08 +0100
committerAndreas Rumpf <rumpf_a@web.de>2014-02-16 11:36:08 +0100
commitf5c0d07a76dc8191f3ed25b18a96bde47f38dcf7 (patch)
tree60bc77142d8fd8afbf6a616d0d6b10bd9175d782 /compiler/cgendata.nim
parent18c47b9e13e289cd4410ac4483f80c8d27450bcd (diff)
parent8cccaebc2ed1ab6464eec52ced757bf1ec048db5 (diff)
downloadNim-f5c0d07a76dc8191f3ed25b18a96bde47f38dcf7.tar.gz
Merge pull request #929 from skyfex/devel
Fixed issue 391 (nested break in except-stmts)
Diffstat (limited to 'compiler/cgendata.nim')
-rw-r--r--compiler/cgendata.nim1
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/cgendata.nim b/compiler/cgendata.nim
index 0e1148343..71479abdd 100644
--- a/compiler/cgendata.nim
+++ b/compiler/cgendata.nim
@@ -58,6 +58,7 @@ type
     sections*: TCProcSections # the code beloging
     isLoop*: bool             # whether block is a loop
     nestedTryStmts*: int16    # how many try statements is it nested into
+    nestedExceptStmts*: int16 # how many except statements is it nested into
     frameLen*: int16
   
   TCProc{.final.} = object    # represents C proc that is currently generated