diff options
Diffstat (limited to 'compiler/vm.nim')
-rw-r--r-- | compiler/vm.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/vm.nim b/compiler/vm.nim index 884500be8..f2d989a8d 100644 --- a/compiler/vm.nim +++ b/compiler/vm.nim @@ -1189,7 +1189,7 @@ proc rawExecute(c: PCtx, start: int, tos: PStackFrame): TFullReg = of opcFinallyEnd: # The control flow may not resume at the next instruction since we may be # raising an exception or performing a cleanup. - if not savedPC < 0: + if savedPC >= 0: pc = savedPC - 1 savedPC = -1 if tos != savedFrame: |