blob: ac9109ed17a17530a6d218ac640900546f62cdf0 [file]
// compile
// Copyright 2026 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 p
type big struct {
_ [1 << 24]byte
f [2]float32
}
var x big
func load() [2]float32 { return x.f }
func store(v [2]float32) { x.f = v }