mirror of git://git.musl-libc.org/musl
aarch64: fix CRTJMP in reloc.h
commit f3ddd17380
broke the build by
using "bx" instead of "br".
This commit is contained in:
parent
85d12e0285
commit
4e50b2e4b5
|
@ -23,4 +23,4 @@
|
||||||
#define REL_TLSDESC R_AARCH64_TLSDESC
|
#define REL_TLSDESC R_AARCH64_TLSDESC
|
||||||
|
|
||||||
#define CRTJMP(pc,sp) __asm__ __volatile__( \
|
#define CRTJMP(pc,sp) __asm__ __volatile__( \
|
||||||
"mov sp,%1 ; bx %0" : : "r"(pc), "r"(sp) : "memory" )
|
"mov sp,%1 ; br %0" : : "r"(pc), "r"(sp) : "memory" )
|
||||||
|
|
Loading…
Reference in New Issue