mirror of
https://github.com/fluencelabs/musl
synced 2025-04-25 15:22:15 +00:00
aarch64: fix CRTJMP in reloc.h
commit f3ddd173806fd5c60b3f034528ca24542aecc5b9 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 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…
x
Reference in New Issue
Block a user