github.com/aykevl/tinygo@v0.5.0/src/runtime/arch_arm64.go (about) 1 package runtime 2 3 const GOARCH = "arm64" 4 5 // The bitness of the CPU (e.g. 8, 32, 64). 6 const TargetBits = 64 7 8 // Align on word boundary. 9 func align(ptr uintptr) uintptr { 10 return (ptr + 7) &^ 7 11 }