[backport] fix #11320 (#11538)

* [backport] fix #11320
* fix test for 32 bit test
This commit is contained in:
Arne Döring
2019-07-03 08:00:40 +02:00
committed by Andreas Rumpf
parent 0a1cb631a2
commit 20d0ef8afb
4 changed files with 17 additions and 6 deletions

View File

@@ -291,7 +291,7 @@ proc computeSizeAlign(conf: ConfigRef; typ: PType) =
of tyUncheckedArray:
let base = typ.lastSon
computeSizeAlign(conf, base)
typ.size = szUnknownSize
typ.size = 0
typ.align = base.align
of tyEnum:
if firstOrd(conf, typ) < 0: