attempt to fix #16374 (#17232)

* remove unnecessary when statement

* remove outdated codes

* attempt to fix #16374

* fix
This commit is contained in:
flywind
2021-03-02 19:41:55 +08:00
committed by GitHub
parent ab780f66ef
commit 5628cd5de1
2 changed files with 44 additions and 1 deletions

View File

@@ -406,7 +406,12 @@ proc resetLoc(p: BProc, loc: var TLoc) =
if isImportedCppType(typ): return
if optSeqDestructors in p.config.globalOptions and typ.kind in {tyString, tySequence}:
assert rdLoc(loc) != nil
linefmt(p, cpsStmts, "$1.len = 0; $1.p = NIM_NIL;$n", [rdLoc(loc)])
let atyp = skipTypes(loc.t, abstractInst)
if atyp.kind in {tyVar, tyLent}:
linefmt(p, cpsStmts, "$1->len = 0; $1->p = NIM_NIL;$n", [rdLoc(loc)])
else:
linefmt(p, cpsStmts, "$1.len = 0; $1.p = NIM_NIL;$n", [rdLoc(loc)])
elif not isComplexValueType(typ):
if containsGcRef:
var nilLoc: TLoc

38
tests/ccgbugs/t16374.nim Normal file
View File

@@ -0,0 +1,38 @@
discard """
matrix: "--gc:refc; --gc:orc"
"""
block:
iterator mvalues(t: var seq[seq[int]]): var seq[int] =
yield t[0]
var t: seq[seq[int]]
while false:
for v in t.mvalues:
discard
proc ok =
while false:
for v in t.mvalues:
discard
ok()
block:
iterator mvalues(t: var seq[seq[int]]): lent seq[int] =
yield t[0]
var t: seq[seq[int]]
while false:
for v in t.mvalues:
discard
proc ok =
while false:
for v in t.mvalues:
discard
ok()