2021-02-26 12:27:59 -07:00
|
|
|
// run
|
|
|
|
|
2021-03-05 17:56:13 -07:00
|
|
|
//go:build !wasm
|
2021-02-26 12:27:59 -07:00
|
|
|
// +build !wasm
|
|
|
|
|
|
|
|
// Copyright 2021 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
)
|
|
|
|
|
|
|
|
var sink *string
|
|
|
|
|
|
|
|
type toobig struct {
|
|
|
|
// 6 words will not SSA but will fit in registers
|
2021-03-05 17:56:13 -07:00
|
|
|
a, b, c string
|
2021-02-26 12:27:59 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
//go:registerparams
|
|
|
|
//go:noinline
|
|
|
|
func H(x toobig) string {
|
|
|
|
return x.a + " " + x.b + " " + x.c
|
|
|
|
}
|
|
|
|
|
|
|
|
//go:registerparams
|
|
|
|
//go:noinline
|
2021-03-05 17:56:13 -07:00
|
|
|
func I(a, b, c string) toobig {
|
|
|
|
return toobig{a, b, c}
|
2021-02-26 12:27:59 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
s := H(toobig{"Hello", "there,", "World"})
|
|
|
|
gotVsWant(s, "Hello there, World")
|
|
|
|
fmt.Println(s)
|
|
|
|
t := H(I("Ahoy", "there,", "Matey"))
|
|
|
|
gotVsWant(t, "Ahoy there, Matey")
|
|
|
|
fmt.Println(t)
|
|
|
|
}
|
|
|
|
|
|
|
|
func gotVsWant(got, want string) {
|
|
|
|
if got != want {
|
|
|
|
fmt.Printf("FAIL, got %s, wanted %s\n", got, want)
|
|
|
|
}
|
|
|
|
}
|