0
1
mirror of https://github.com/golang/go synced 2025-04-03 23:25:20 +00:00
Files
go/test/fixedbugs/issue71759.go
Keith Randall beac2f7d3b cmd/compile: fix sign extension of paired 32-bit loads on arm64
Fixes #71759

Change-Id: Iab05294ac933cc9972949158d3fe2bdc3073df5e
Reviewed-on: https://go-review.googlesource.com/c/go/+/649895
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Cherry Mui <cherryyz@google.com>
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
2025-02-15 07:53:28 -08:00

21 lines
367 B
Go

// run
// Copyright 2025 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
//go:noinline
func f(p *[2]int32) (int64, int64) {
return int64(p[0]), int64(p[1])
}
func main() {
p := [2]int32{-1, -1}
x, y := f(&p)
if x != -1 || y != -1 {
println(x, y)
}
}