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