diff options
author | comex | 2015-04-15 01:01:32 -0400 |
---|---|---|
committer | comex | 2015-04-15 01:52:01 -0400 |
commit | d950e0d5cd17bfdb8371eab199f0ba6d8506a5b9 (patch) | |
tree | ffccde9d84c9f450e599f8a1119c0b507a53f2b8 /lib/darwin/objc-asm.S | |
parent | More bugfixes thanks to him. (diff) | |
download | substitute-d950e0d5cd17bfdb8371eab199f0ba6d8506a5b9.tar.gz |
fix for compiling objc-asm.S on ARM with newer Apple compiler
Diffstat (limited to 'lib/darwin/objc-asm.S')
-rw-r--r-- | lib/darwin/objc-asm.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/darwin/objc-asm.S b/lib/darwin/objc-asm.S index bebce80..98f1e55 100644 --- a/lib/darwin/objc-asm.S +++ b/lib/darwin/objc-asm.S @@ -33,7 +33,7 @@ _remap_start: jmp *%eax #elif defined(__arm__) push {r0-r4, lr} /* r4 for align */ - mov r3, #(my_rpe - (1f + 2)) + mov r3, #:lower16:(my_rpe - (1f + 2)) add r3, pc 1: ldr r0, [r3, #4] |