]> Cypherpunks.ru repositories - gostls13.git/blobdiff - test/deferfin.go
cmd/compile/internal/inline: score call sites exposed by inlines
[gostls13.git] / test / deferfin.go
index 80372916d20b303303483f6ea36911b20482c8dc..1312bbbe71b04ac195330dc9151c84cfcf87031e 100644 (file)
@@ -18,12 +18,8 @@ import (
 var sink func()
 
 func main() {
-       // Does not work on 32-bits due to partially conservative GC.
+       // Does not work with gccgo, due to partially conservative GC.
        // Try to enable when we have fully precise GC.
-       if runtime.GOARCH != "amd64" {
-               return
-       }
-       // Likewise for gccgo.
        if runtime.Compiler == "gccgo" {
                return
        }
@@ -60,4 +56,3 @@ func main() {
                panic("not all finalizers are called")
        }
 }
-