summary refs log tree commit diff stats
path: root/compiler/ic
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2023-12-14 16:25:34 +0100
committerGitHub <noreply@github.com>2023-12-14 16:25:34 +0100
commit6ed33b6d61518c8de94b07c7ffb68fcc6f839897 (patch)
tree037796db0c0cb1efee88ec582442b719b422699d /compiler/ic
parent1b7b0d69db41b3c5a27cca643d66c0acabbe41df (diff)
downloadNim-6ed33b6d61518c8de94b07c7ffb68fcc6f839897.tar.gz
type graph refactor; part 3 (#23064)
Diffstat (limited to 'compiler/ic')
-rw-r--r--compiler/ic/ic.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/ic/ic.nim b/compiler/ic/ic.nim
index 0085ea748..a7d3ed81c 100644
--- a/compiler/ic/ic.nim
+++ b/compiler/ic/ic.nim
@@ -370,7 +370,7 @@ proc storeType(t: PType; c: var PackedEncoder; m: var PackedModule): PackedItemI
       paddingAtEnd: t.paddingAtEnd)
     storeNode(p, t, n)
     p.typeInst = t.typeInst.storeType(c, m)
-    for kid in items t:
+    for kid in kids t:
       p.types.add kid.storeType(c, m)
     c.addMissing t.sym
     p.sym = t.sym.safeItemId(c, m)