Update to go1.25.0

This commit is contained in:
Vorapol Rinsatitnon
2025-08-13 21:50:03 +07:00
parent 4fdddd398d
commit c7759f4edb
2303 changed files with 161699 additions and 70952 deletions

View File

@@ -129,5 +129,27 @@ func f9(a, b int) bool {
return c
}
//go:noinline
func f10and(a bool, b bool) bool {
var x bool
if a {
x = b
} else {
x = a
}
return x // ERROR "converted OpPhi to AndB$"
}
//go:noinline
func f11or(a bool, b bool) bool {
var x bool
if a {
x = a
} else {
x = b
}
return x // ERROR "converted OpPhi to OrB$"
}
func main() {
}