aarch64: fix CRTJMP in reloc.h
authorSzabolcs Nagy <nsz@port70.net>
Thu, 30 Apr 2015 17:47:39 +0000 (18:47 +0100)
committerRich 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

index 1b0402bcfab8418c71701b242f7e6e6267338378..51b66e23850f8e8cd20baa6f7f3f3f2eaee6cb6d 100644 (file)
@@ -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" )