2014-09-11 10:17:45 -06:00
|
|
|
// errorcheck -0 -live -wb=0
|
2014-06-02 19:26:32 -06:00
|
|
|
|
2016-04-10 15:32:26 -06:00
|
|
|
// Copyright 2014 The Go Authors. All rights reserved.
|
2014-06-02 19:26:32 -06:00
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
// liveness tests with inlining ENABLED
|
|
|
|
// see also live.go.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
// issue 8142: lost 'addrtaken' bit on inlined variables.
|
|
|
|
|
2014-11-05 12:42:54 -07:00
|
|
|
func printnl()
|
|
|
|
|
2017-03-29 12:01:41 -06:00
|
|
|
//go:noescape
|
|
|
|
func useT40(*T40)
|
|
|
|
|
2014-06-02 19:26:32 -06:00
|
|
|
type T40 struct {
|
|
|
|
m map[int]int
|
|
|
|
}
|
|
|
|
|
|
|
|
func newT40() *T40 {
|
2014-09-30 10:48:47 -06:00
|
|
|
ret := T40{}
|
2017-09-02 10:46:59 -06:00
|
|
|
ret.m = make(map[int]int, 42) // ERROR "live at call to makemap: &ret$"
|
2014-06-02 19:26:32 -06:00
|
|
|
return &ret
|
|
|
|
}
|
|
|
|
|
|
|
|
func bad40() {
|
2023-08-21 12:26:15 -06:00
|
|
|
t := newT40() // ERROR "stack object ret T40$" "stack object .autotmp_[0-9]+ runtime.hmap$"
|
2018-09-07 15:55:09 -06:00
|
|
|
printnl() // ERROR "live at call to printnl: ret$"
|
|
|
|
useT40(t)
|
2014-06-02 19:26:32 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
func good40() {
|
2018-09-07 15:55:09 -06:00
|
|
|
ret := T40{} // ERROR "stack object ret T40$"
|
2023-08-21 12:26:15 -06:00
|
|
|
ret.m = make(map[int]int, 42) // ERROR "stack object .autotmp_[0-9]+ runtime.hmap$"
|
2014-06-02 19:26:32 -06:00
|
|
|
t := &ret
|
2018-09-07 15:55:09 -06:00
|
|
|
printnl() // ERROR "live at call to printnl: ret$"
|
|
|
|
useT40(t)
|
2014-06-02 19:26:32 -06:00
|
|
|
}
|