live2.go 963 Bytes
Newer Older
Russ Cox's avatar
Russ Cox committed
1
// errorcheck -0 -live -wb=0
2

3
// Copyright 2014 The Go Authors. All rights reserved.
4 5 6 7 8 9 10 11 12 13
// 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.

14 15
func printnl()

16 17 18
//go:noescape
func useT40(*T40)

19 20 21 22 23
type T40 struct {
	m map[int]int
}

func newT40() *T40 {
24
	ret := T40{}
25
	ret.m = make(map[int]int, 42) // ERROR "live at call to makemap: &ret$"
26 27 28 29
	return &ret
}

func bad40() {
30
	t := newT40() // ERROR "stack object ret T40$" "stack object .autotmp_[0-9]+ map.hdr\[int\]int$"
31 32
	printnl()     // ERROR "live at call to printnl: ret$"
	useT40(t)
33 34 35
}

func good40() {
36
	ret := T40{}                  // ERROR "stack object ret T40$"
37
	ret.m = make(map[int]int, 42) // ERROR "stack object .autotmp_[0-9]+ map.hdr\[int\]int$"
38
	t := &ret
39 40
	printnl() // ERROR "live at call to printnl: ret$"
	useT40(t)
41
}