projects
/
oweals
/
musl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
85d12e0
)
aarch64: fix CRTJMP in reloc.h
author
Szabolcs Nagy
<nsz@port70.net>
Thu, 30 Apr 2015 17:47:39 +0000
(18:47 +0100)
committer
Rich Felker
<dalias@aerifal.cx>
Thu, 30 Apr 2015 20:21:51 +0000
(16:21 -0400)
commit
f3ddd173806fd5c60b3f034528ca24542aecc5b9
broke the build by
using "bx" instead of "br".
arch/aarch64/reloc.h
patch
|
blob
|
history
diff --git
a/arch/aarch64/reloc.h
b/arch/aarch64/reloc.h
index 1b0402bcfab8418c71701b242f7e6e6267338378..51b66e23850f8e8cd20baa6f7f3f3f2eaee6cb6d 100644
(file)
--- a/
arch/aarch64/reloc.h
+++ b/
arch/aarch64/reloc.h
@@
-23,4
+23,4
@@
#define REL_TLSDESC R_AARCH64_TLSDESC
#define CRTJMP(pc,sp) __asm__ __volatile__( \
- "mov sp,%1 ; b
x
%0" : : "r"(pc), "r"(sp) : "memory" )
+ "mov sp,%1 ; b
r
%0" : : "r"(pc), "r"(sp) : "memory" )