2014-09-11 16:17:45 +00:00
|
|
|
// errorcheck -0 -live -wb=0
|
2014-06-03 01:26:32 +00:00
|
|
|
|
2016-04-10 21:32:26 +00:00
|
|
|
// Copyright 2014 The Go Authors. All rights reserved.
|
2014-06-03 01:26:32 +00: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 19:42:54 +00:00
|
|
|
func printnl()
|
|
|
|
|
2017-03-29 18:01:41 +00:00
|
|
|
//go:noescape
|
|
|
|
func useT40(*T40)
|
|
|
|
|
2014-06-03 01:26:32 +00:00
|
|
|
type T40 struct {
|
|
|
|
m map[int]int
|
|
|
|
}
|
|
|
|
|
|
|
|
func newT40() *T40 {
|
2014-09-30 16:48:47 +00:00
|
|
|
ret := T40{}
|
2017-09-02 16:46:59 +00:00
|
|
|
ret.m = make(map[int]int, 42) // ERROR "live at call to makemap: &ret$"
|
2014-06-03 01:26:32 +00:00
|
|
|
return &ret
|
|
|
|
}
|
|
|
|
|
|
|
|
func bad40() {
|
2019-09-03 16:24:35 +00:00
|
|
|
t := newT40() // ERROR "stack object ret T40$" "stack object .autotmp_[0-9]+ map.hdr\[int\]int$"
|
2018-09-07 21:55:09 +00:00
|
|
|
printnl() // ERROR "live at call to printnl: ret$"
|
|
|
|
useT40(t)
|
2014-06-03 01:26:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func good40() {
|
2018-09-07 21:55:09 +00:00
|
|
|
ret := T40{} // ERROR "stack object ret T40$"
|
2019-09-03 16:24:35 +00:00
|
|
|
ret.m = make(map[int]int, 42) // ERROR "stack object .autotmp_[0-9]+ map.hdr\[int\]int$"
|
2014-06-03 01:26:32 +00:00
|
|
|
t := &ret
|
2018-09-07 21:55:09 +00:00
|
|
|
printnl() // ERROR "live at call to printnl: ret$"
|
|
|
|
useT40(t)
|
2014-06-03 01:26:32 +00:00
|
|
|
}
|