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