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
30 lines
519 B
Go
30 lines
519 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("Formatting", NOSPLIT, "func()")
|
|
Doc("Formatting contains various cases to test the formatter.")
|
|
|
|
ADDQ(R8, R8)
|
|
Comment("One comment line between instructions.")
|
|
ADDQ(R8, R8)
|
|
|
|
Comment("Comment before label.")
|
|
Label("label")
|
|
Comment("Comment after label.")
|
|
ADDQ(R8, R8)
|
|
JMP(LabelRef("label"))
|
|
|
|
RET()
|
|
|
|
Generate()
|
|
}
|