aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2014-09-16 20:53:38 -0400
committerRuss Cox <rsc@golang.org>2014-09-16 20:53:38 -0400
commitcbf97d9103b2bbfb8c798f06c751e74093062b57 (patch)
tree5efd46af66ea3c364354b8e5e010bd777ce4764d /include
parentda8cf5438aa676a99e8bb55c94011b2581743e1a (diff)
downloadgo-cbf97d9103b2bbfb8c798f06c751e74093062b57.tar.xz
liblink, sync/atomic: fix arm build
The liblink code to insert the FUNCDATA for a stack map from the Go prototype was not correct for ARM (different data structure layout). Also, sync/atomic was missing some Go prototypes for ARM-specific functions. TBR=r CC=golang-codereviews https://golang.org/cl/143160045
Diffstat (limited to 'include')
-rw-r--r--include/link.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/link.h b/include/link.h
index 8c73eab51e..292b077394 100644
--- a/include/link.h
+++ b/include/link.h
@@ -471,6 +471,7 @@ struct LinkArch
int D_PARAM;
int D_SCONST;
int D_STATIC;
+ int D_OREG;
int ACALL;
int ADATA;