summaryrefslogtreecommitdiff
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
commit796b5c258b412212ebf9dc8e91487eafea38a7a9 (patch)
tree3e1b50b95817de2fade607e1934fd992f17f47e8 /include
parentbf1cf8a2e4e179e45a74f0daf3267e86cd92d659 (diff)
downloadgo-796b5c258b412212ebf9dc8e91487eafea38a7a9.tar.gz
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://codereview.appspot.com/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 8c73eab51..292b07739 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;