diff options
author | Russ Cox <rsc@golang.org> | 2011-02-25 14:29:55 -0500 |
---|---|---|
committer | Russ Cox <rsc@golang.org> | 2011-02-25 14:29:55 -0500 |
commit | 8767d0c1645d3a3668f2d0b20b897022aaebdeaf (patch) | |
tree | 03d30c76bbe30372e4a8d4b77a2731a28789f4db /src/pkg/runtime/Makefile | |
parent | 57730dc926e4bd6dc69b0f58eaa320408df2bbbd (diff) | |
download | go-8767d0c1645d3a3668f2d0b20b897022aaebdeaf.tar.gz |
runtime: use kernel-supplied cas on linux/arm
Using the kernel-supplied compare-and-swap code
on linux/arm means that runtime doesn't have to care
whether this is GOARM=5 or GOARM=6 anymore.
Fixes issue 1494.
R=r, r2
CC=golang-dev
http://codereview.appspot.com/4245043
Diffstat (limited to 'src/pkg/runtime/Makefile')
-rw-r--r-- | src/pkg/runtime/Makefile | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/pkg/runtime/Makefile b/src/pkg/runtime/Makefile index 185397f57..e4cc08175 100644 --- a/src/pkg/runtime/Makefile +++ b/src/pkg/runtime/Makefile @@ -40,11 +40,8 @@ OFILES_386=\ vlop.$O\ vlrt.$O\ -GOARM?=6 - # arm-specific object files OFILES_arm=\ - cas$(GOARM).$O\ memset.$O\ softfloat.$O\ vlop.$O\ |