diff options
author | Michael Matloob <matloob@golang.org> | 2015-11-11 12:39:30 -0500 |
---|---|---|
committer | Michael Matloob <matloob@golang.org> | 2015-11-12 17:04:45 +0000 |
commit | 432cb66f16b2bb6a167725057168bbe4aefe5fb5 (patch) | |
tree | 0a6aaf45df2810dc7276212496a4b647ed0bb6d2 /src/runtime/stubs.go | |
parent | b5a0c67fcc2f87b5e2fd04e023f9a0b2f3d759da (diff) | |
download | go-git-432cb66f16b2bb6a167725057168bbe4aefe5fb5.tar.gz |
runtime: break out system-specific constants into package sys
runtime/internal/sys will hold system-, architecture- and config-
specific constants.
Updates #11647
Change-Id: I6db29c312556087a42e8d2bdd9af40d157c56b54
Reviewed-on: https://go-review.googlesource.com/16817
Reviewed-by: Russ Cox <rsc@golang.org>
Diffstat (limited to 'src/runtime/stubs.go')
-rw-r--r-- | src/runtime/stubs.go | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/runtime/stubs.go b/src/runtime/stubs.go index 58ea474c70..9ead56e897 100644 --- a/src/runtime/stubs.go +++ b/src/runtime/stubs.go @@ -6,12 +6,6 @@ package runtime import "unsafe" -// Declarations for runtime services implemented in C or assembly. - -const ptrSize = 4 << (^uintptr(0) >> 63) // unsafe.Sizeof(uintptr(0)) but an ideal const -const regSize = 4 << (^uintreg(0) >> 63) // unsafe.Sizeof(uintreg(0)) but an ideal const -const spAlign = 1*(1-goarch_arm64) + 16*goarch_arm64 // SP alignment: 1 normally, 16 for ARM64 - // Should be a built-in for unsafe.Pointer? //go:nosplit func add(p unsafe.Pointer, x uintptr) unsafe.Pointer { |