mirror of
https://github.com/nim-lang/Nim.git
synced 2026-06-03 10:24:44 +00:00
* remove unnecessary when statement * remove outdated codes * attempt to fix #16374 * fix
This commit is contained in:
@@ -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
38
tests/ccgbugs/t16374.nim
Normal 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()
|
||||
|
||||
Reference in New Issue
Block a user