Bump CI Go versions to 1.16 and 1.17. Update build tags with `go:build` equivalents. Upgrade asmfmt tool for new `go:build` support. Updates #183
18 lines
286 B
Go
18 lines
286 B
Go
//go:build ignore
|
|
// +build ignore
|
|
|
|
package main
|
|
|
|
import (
|
|
. "github.com/mmcloughlin/avo/build"
|
|
. "github.com/mmcloughlin/avo/operand"
|
|
. "github.com/mmcloughlin/avo/reg"
|
|
)
|
|
|
|
func main() {
|
|
TEXT("Issue65", NOSPLIT, "func()")
|
|
VINSERTI128(Imm(1), Y0.AsX(), Y1, Y2)
|
|
RET()
|
|
Generate()
|
|
}
|