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 e13fc5bb7..b540ac071 100644 --- a/compiler/vm.nim +++ b/compiler/vm.nim @@ -524,7 +524,7 @@ proc rawExecute(c: PCtx, start: int, tos: PStackFrame): TFullReg = # Used to keep track of where the execution is resumed. var savedPC = -1 var savedFrame: PStackFrame - when defined(gcArc): + when defined(gcArc) or defined(gcOrc): template updateRegsAlias = discard template regs: untyped = tos.slots else: |