Skip to content

Commit cd7904f

Browse files
committed
1 parent 13ddbc4 commit cd7904f

File tree

3 files changed

+29
-4
lines changed

3 files changed

+29
-4
lines changed

compiler/ccgexprs.nim

+1-2
Original file line numberDiff line numberDiff line change
@@ -2818,11 +2818,10 @@ proc getNullValueAux(p: BProc; t: PType; obj, constOrNil: PNode,
28182818
# designated initilization is the only way to init non first element of unions
28192819
# branches are allowed to have no members (b.len == 0), in this case they don't need initializer
28202820
if b.kind == nkRecList and b.len > 0:
2821-
result.add "._i" & $selectedBranch & " = {"
2821+
result.add "._" & mangleRecFieldName(p.module, obj[0].sym) & "_" & $selectedBranch & " = {"
28222822
getNullValueAux(p, t, b, constOrNil, result, countB, isConst, info)
28232823
result.add "}"
28242824
elif b.kind == nkSym:
2825-
result.add "." & lastSon(obj[selectedBranch]).sym.loc.r & " = "
28262825
getNullValueAux(p, t, b, constOrNil, result, countB, isConst, info)
28272826
result.add "}"
28282827

compiler/ccgtypes.nim

+3-2
Original file line numberDiff line numberDiff line change
@@ -525,7 +525,8 @@ proc genRecordFieldsAux(m: BModule, n: PNode,
525525
of nkOfBranch, nkElse:
526526
let k = lastSon(n[i])
527527
if k.kind != nkSym:
528-
let a = genRecordFieldsAux(m, k, rectype, check, unionPrefix & "_i" & $i & ".")
528+
let structName = "_" & mangleRecFieldName(m, n[0].sym) & "_" & $i
529+
let a = genRecordFieldsAux(m, k, rectype, check, unionPrefix & $structName & ".")
529530
if a != nil:
530531
if tfPacked notin rectype.flags:
531532
unionBody.add("struct {")
@@ -535,7 +536,7 @@ proc genRecordFieldsAux(m: BModule, n: PNode,
535536
else:
536537
unionBody.addf("#pragma pack(push, 1)$nstruct{", [])
537538
unionBody.add(a)
538-
unionBody.addf("} _i$1;$n", [rope($i)])
539+
unionBody.addf("} $1;$n", [structName])
539540
if tfPacked in rectype.flags and hasAttribute notin CC[m.config.cCompiler].props:
540541
unionBody.addf("#pragma pack(pop)$n", [])
541542
else:

tests/destructor/tarc3.nim

+25
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,30 @@ type
4141
of tkInt64, tkComma..tkString: ff: seq[float]
4242
else: str1*: string
4343

44+
Token4* = object
45+
case kind*: TokenKind
46+
of tkNumber: numVal*: float
47+
of tkInt64, tkComma..tkString: ff: seq[float]
48+
else: str1*: string
49+
case kind2*: TokenKind
50+
of tkNumber:
51+
numVal2*: float
52+
intSeqVal3*: seq[int]
53+
of tkInt64, tkComma..tkString:
54+
case kind3*: TokenKind
55+
of tkNumber: numVal3*: float
56+
of tkInt64, tkComma..tkString:
57+
ff3: seq[float]
58+
ff5: string
59+
else:
60+
str3*: string
61+
mysrq: seq[int]
62+
else:
63+
case kind4*: TokenKind
64+
of tkNumber: numVal4*: float
65+
of tkInt64, tkComma..tkString: ff4: seq[float]
66+
else: str4*: string
67+
4468
BaseLexer* = object of RootObj
4569
input*: string
4670
pos*: Natural
@@ -58,6 +82,7 @@ type
5882
tok: Token
5983
tok2: Token2
6084
tok3: Token3
85+
tok4: Token4
6186
allowTrailingComma: bool
6287
allowIdentifierObjectKey: bool
6388

0 commit comments

Comments
 (0)