]> Cypherpunks.ru repositories - gostls13.git/blobdiff - test/live2.go
cmd/compile/internal/inline: score call sites exposed by inlines
[gostls13.git] / test / live2.go
index cea312f075187f2457bf5f36e4f0d9fb54aa8367..2beac4f8d2bbe4e70711c209383dc198a47829d5 100644 (file)
@@ -27,14 +27,14 @@ func newT40() *T40 {
 }
 
 func bad40() {
-       t := newT40() // ERROR "live at call to makemap: ret$" "stack object ret T40$" "stack object .autotmp_[0-9]+ map.hdr\[int\]int$"
+       t := newT40() // ERROR "stack object ret T40$" "stack object .autotmp_[0-9]+ runtime.hmap$"
        printnl()     // ERROR "live at call to printnl: ret$"
        useT40(t)
 }
 
 func good40() {
        ret := T40{}                  // ERROR "stack object ret T40$"
-       ret.m = make(map[int]int, 42) // ERROR "live at call to makemap: ret$" "stack object .autotmp_[0-9]+ map.hdr\[int\]int$"
+       ret.m = make(map[int]int, 42) // ERROR "stack object .autotmp_[0-9]+ runtime.hmap$"
        t := &ret
        printnl() // ERROR "live at call to printnl: ret$"
        useT40(t)