simple program works with --newruntime

This commit is contained in:
Araq
2019-04-02 10:42:58 +02:00
parent b707790519
commit 0b96b135f8
3 changed files with 14 additions and 12 deletions

View File

@@ -1145,7 +1145,8 @@ proc genReset(p: BProc, n: PNode) =
genTypeInfo(p.module, skipTypes(a.t, {tyVar}), n.info))
proc genDefault(p: BProc; n: PNode; d: var TLoc) =
resetLoc(p, d)
if d.k == locNone: getTemp(p, n.typ, d, needsInit=true)
else: resetLoc(p, d)
proc rawGenNew(p: BProc, a: TLoc, sizeExpr: Rope) =
var sizeExpr = sizeExpr

View File

@@ -328,6 +328,7 @@ proc resetLoc(p: BProc, loc: var TLoc) =
let typ = skipTypes(loc.t, abstractVarRange)
if isImportedCppType(typ): return
if p.config.selectedGc == gcDestructors and typ.kind in {tyString, tySequence}:
assert rdLoc(loc) != nil
linefmt(p, cpsStmts, "$1.len = 0; $1.p = NIM_NIL;$n", rdLoc(loc))
elif not isComplexValueType(typ):
if containsGcRef:

View File

@@ -1,10 +1,9 @@
discard """
disabled: true
cmd: '''nim c --gc:destructors $file'''
cmd: '''nim c --newruntime $file'''
output: '''hi
ho
ha
7 7'''
1 1'''
"""
import allocators
@@ -76,15 +75,16 @@ iterator interpolatedFragments*(s: string): tuple[kind: InterpolatedKind,
break
i = j
let input = "$test{} $this is ${an{ example}} "
let expected = @[(ikVar, "test"), (ikStr, "{} "), (ikVar, "this"),
(ikStr, " is "), (ikExpr, "an{ example}"), (ikStr, " ")]
var i = 0
for s in interpolatedFragments(input):
doAssert s == expected[i]
inc i
when false:
let input = "$test{} $this is ${an{ example}} "
let expected = @[(ikVar, "test"), (ikStr, "{} "), (ikVar, "this"),
(ikStr, " is "), (ikExpr, "an{ example}"), (ikStr, " ")]
var i = 0
for s in interpolatedFragments(input):
doAssert s == expected[i]
inc i
#echo s
let (a, d) = allocCounters()
cprintf("%ld %ld\n", a, d)
discard cprintf("%ld %ld\n", a, d)