diff options
Diffstat (limited to 'compiler/vmdef.nim')
-rw-r--r-- | compiler/vmdef.nim | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/compiler/vmdef.nim b/compiler/vmdef.nim index 0afb2ed6a..5c1d30a52 100644 --- a/compiler/vmdef.nim +++ b/compiler/vmdef.nim @@ -231,8 +231,7 @@ type PProc* = ref object blocks*: seq[TBlock] # blocks; temp data structure sym*: PSym - slots*: array[TRegister, tuple[inUse: bool, kind: TSlotKind]] - maxSlots*: int + regInfo*: seq[tuple[inUse: bool, kind: TSlotKind]] VmArgs* = object ra*, rb*, rc*: Natural |