mirror of
https://github.com/golang/go
synced 2024-11-02 13:42:29 +00:00
52016be3f4
The non-unified frontend had repeated issues with inlining and generics (#49309, #51909, #52907), which led us to substantially restrict inlining when shape types were present. However, these issues are evidently not present in unified IR's inliner, and the safety restrictions added for the non-unified frontend can simply be disabled in unified mode. Fixes #54497. Change-Id: I8e6ac9f3393c588bfaf14c6452891b9640a9d1bd Reviewed-on: https://go-review.googlesource.com/c/go/+/424775 Reviewed-by: Cuong Manh Le <cuong.manhle.vn@gmail.com> Run-TryBot: Matthew Dempsky <mdempsky@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Keith Randall <khr@golang.org> Reviewed-by: Keith Randall <khr@google.com>
19 lines
618 B
Go
19 lines
618 B
Go
// errorcheck -0 -m
|
|
|
|
// Copyright 2022 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.
|
|
|
|
// Test that inlining works with generic functions.
|
|
|
|
package testcase
|
|
|
|
type C interface{ ~uint | ~uint32 | ~uint64 }
|
|
|
|
func isAligned[T C](x, y T) bool { // ERROR "can inline isAligned\[uint\]" "can inline isAligned\[go\.shape\.uint\]" "inlining call to isAligned\[go\.shape\.uint\]"
|
|
return x%y == 0
|
|
}
|
|
|
|
func foo(x uint) bool { // ERROR "can inline foo"
|
|
return isAligned(x, 64) // ERROR "inlining call to isAligned\[go\.shape\.uint\]"
|
|
}
|