]> Cypherpunks.ru repositories - gostls13.git/blobdiff - test/gc.go
cmd/compile/internal/inline: score call sites exposed by inlines
[gostls13.git] / test / gc.go
index df9d05e1871ab508eec526246732289afa3731cd..6688f9fbddb9148c60ff0719e45cfc367cff35dc 100644 (file)
@@ -1,25 +1,26 @@
-// $G $F.go && $L $F.$A && ./$A.out
+// run
 
 // Copyright 2009 The Go Authors. All rights reserved.
 // Use of this source code is governed by a BSD-style
 // license that can be found in the LICENSE file.
 
+// Simple test of the garbage collector.
+
 package main
 
-import "malloc"
+import "runtime"
 
 func mk2() {
-       b := new([10000]byte);
-//     println(b, "stored at", &b);
+       b := new([10000]byte)
+       _ = b
+       //      println(b, "stored at", &b)
 }
 
-func mk1() {
-       mk2();
-}
+func mk1() { mk2() }
 
 func main() {
        for i := 0; i < 10; i++ {
-               mk1();
-               malloc.GC();
+               mk1()
+               runtime.GC()
        }
 }