compiler: do not free memory on Windows for now
parent
7f3cfea02b
commit
21f3b9eccc
|
@ -1068,6 +1068,7 @@ fn (p mut Parser) close_scope() {
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
// Clean up memory, only do this for V compiler for now
|
// Clean up memory, only do this for V compiler for now
|
||||||
|
$if !windows {
|
||||||
if p.pref.building_v && v.is_alloc && !p.pref.is_test {
|
if p.pref.building_v && v.is_alloc && !p.pref.is_test {
|
||||||
mut free_fn := 'free'
|
mut free_fn := 'free'
|
||||||
if v.typ.starts_with('array_') {
|
if v.typ.starts_with('array_') {
|
||||||
|
@ -1092,6 +1093,7 @@ fn (p mut Parser) close_scope() {
|
||||||
p.genln('$free_fn($v.name); // close_scope free')
|
p.genln('$free_fn($v.name); // close_scope free')
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if p.cur_fn.defer_text.last() != '' {
|
if p.cur_fn.defer_text.last() != '' {
|
||||||
p.genln(p.cur_fn.defer_text.last())
|
p.genln(p.cur_fn.defer_text.last())
|
||||||
|
|
Loading…
Reference in New Issue