compiler: remove println statement

I forgot to remove this debug print after I wrote the code...
This commit is contained in:
Ayke van Laethem
2018-10-29 18:18:23 +01:00
parent 2a5c331516
commit 317b12b8c0
-1
View File
@@ -225,7 +225,6 @@ func (c *Compiler) doesEscape(value llvm.Value) bool {
// pointers escape. // pointers escape.
// TODO: introduce //go:noescape that sets the 'nocapture' // TODO: introduce //go:noescape that sets the 'nocapture'
// flag on each input parameter. // flag on each input parameter.
println("declaration:", use.CalledValue().Name())
continue continue
} }
} }