JavaScript promise rejection: Loading CSS chunk index-domready failed. (error: https://sirherobrine23.com.br/assets/css/index-domready.9de057c0.css). Open browser console to see more details.
0
1
mirror of https://github.com/golang/go synced 2025-07-08 20:38:59 +00:00
Files
go/test/fixedbugs/issue36723.go

27 lines
630 B
Go
Raw Permalink Normal View History

// compile -d=ssa/check/on
// Copyright 2020 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.
// Issue 36723: fail to compile on PPC64 when SSA check is on.
package p
import "unsafe"
type T struct {
a, b, c, d uint8
x [10]int32
}
func F(p *T, i uintptr) int32 {
// load p.x[i] using unsafe, derived from runtime.pcdatastart
_ = *p
return *(*int32)(add(unsafe.Pointer(&p.d), unsafe.Sizeof(p.d)+i*unsafe.Sizeof(p.x[0])))
}
func add(p unsafe.Pointer, x uintptr) unsafe.Pointer {
return unsafe.Pointer(uintptr(p) + x)
}