diff options
author | Russ Cox <rsc@golang.org> | 2014-09-16 10:22:15 -0400 |
---|---|---|
committer | Russ Cox <rsc@golang.org> | 2014-09-16 10:22:15 -0400 |
commit | 5819f77545053174374fc02ff3e09b6a6591c22c (patch) | |
tree | c7698f0ca27a64cd0de49e36c5d0501ab187ddd7 /src/runtime/arch_arm.go | |
parent | f1e298b92fb8286ed1b9aa24f3cdfa5dd9e0841b (diff) | |
download | go-5819f77545053174374fc02ff3e09b6a6591c22c.tar.gz |
runtime: remove duplicated Go constants
The C header files are the single point of truth:
every C enum constant Foo is available to Go as _Foo.
Remove or redirect duplicate Go declarations so they
cannot be out of sync.
Eventually we will need to put constants in Go, but for now having
them be out of sync with C is too risky. These predate the build
support for auto-generating Go constants from the C definitions.
LGTM=iant
R=iant
CC=golang-codereviews
https://codereview.appspot.com/141510043
Diffstat (limited to 'src/runtime/arch_arm.go')
-rw-r--r-- | src/runtime/arch_arm.go | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/runtime/arch_arm.go b/src/runtime/arch_arm.go index 23f2711f6..79d38c7ab 100644 --- a/src/runtime/arch_arm.go +++ b/src/runtime/arch_arm.go @@ -4,9 +4,5 @@ package runtime -const ( - cacheLineSize = 32 -) - type uintreg uint32 type intptr int32 // TODO(rsc): remove |