1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

compiler: free local_vars

This commit is contained in:
Alexander Medvednikov
2019-09-23 20:34:08 +03:00
parent 0e39df24d4
commit 8d52d877fb
7 changed files with 118 additions and 85 deletions

View File

@ -193,7 +193,7 @@ fn main() {
v.cgen.lines.free()
free(v.cgen)
for _, f in v.table.fns {
f.local_vars.free()
//f.local_vars.free()
f.args.free()
//f.defer_text.free()
}