19 lines
310 B
Go
19 lines
310 B
Go
//go:build ignore
|
|
|
|
package main
|
|
|
|
import (
|
|
. "sources.truenas.cloud/code/avo/build"
|
|
. "sources.truenas.cloud/code/avo/operand"
|
|
)
|
|
|
|
func main() {
|
|
TEXT("Issue68", NOSPLIT, "func() uint64")
|
|
Doc("Issue68 tests custom package names.")
|
|
x := GP64()
|
|
MOVQ(U32(68), x)
|
|
Store(x, ReturnIndex(0))
|
|
RET()
|
|
Generate()
|
|
}
|