all: rename garbage collectors

dumb -> leaking:
  make it more clear what this "GC" does: leak everything.
marksweep -> conservative:
  "marksweep" is too generic, use "conservative" to differentiate
  between future garbage collectors: precise marksweep / mark-compact /
  refcounting.
This commit is contained in:
Ayke van Laethem
2019-02-17 20:19:08 +01:00
parent 1fd0c8d48c
commit 00e91ec569
5 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -169,7 +169,7 @@ func (c *Compiler) TargetData() llvm.TargetData {
func (c *Compiler) selectGC() string {
gc := c.GC
if gc == "" {
gc = "dumb"
gc = "leaking"
}
return gc
}