Files
avo/tests/fixedbugs/issue89/asm.go

23 lines
341 B
Go
Raw Normal View History

//go:build ignore
package main
import (
. "github.com/mmcloughlin/avo/build"
. "github.com/mmcloughlin/avo/operand"
)
func main() {
TEXT("Issue89", NOSPLIT, "func() uint64")
x := GP64()
MOVQ(U32(42), x)
for i := 0; i < 100; i++ {
zero := GP64()
XORQ(zero, zero)
ADDQ(zero, x)
}
Store(x, ReturnIndex(0))
RET()
Generate()
}