
Debugserver has a bug where writing to a AVX-2 or AVX-512 register does not work unless it is followed by at least a write to a AVX (not 2 or 512) register. See also: https://bugs.llvm.org/show_bug.cgi?id=52362 Fixes #2767
8 lines
57 B
Go
8 lines
57 B
Go
package main
|
|
|
|
func asmFunc()
|
|
|
|
func main() {
|
|
asmFunc()
|
|
}
|