diff options
-rw-r--r-- | libitm/ChangeLog | 5 | ||||
-rw-r--r-- | libitm/config/powerpc/sjlj.S | 8 |
2 files changed, 9 insertions, 4 deletions
diff --git a/libitm/ChangeLog b/libitm/ChangeLog index d745b54..569d5bb 100644 --- a/libitm/ChangeLog +++ b/libitm/ChangeLog @@ -1,3 +1,8 @@ +2015-07-03 Carlos Sánchez de La Lama <csanchezdll@gmail.com> + + PR target/52482 + * config/powerpc/sjlj.S: Port to Xcode 2.5. + 2015-05-27 Uros Bizjak <ubizjak@gmail.com> * config/linux/x86/futex_bits.h (sys_futex0) [__x86_64__]: Change diff --git a/libitm/config/powerpc/sjlj.S b/libitm/config/powerpc/sjlj.S index 878dceb..48e021c 100644 --- a/libitm/config/powerpc/sjlj.S +++ b/libitm/config/powerpc/sjlj.S @@ -83,16 +83,16 @@ bl \name .endm #elif defined(_CALL_DARWIN) -.macro FUNC name +.macro FUNC .globl _$0 _$0: .endmacro -.macro END name +.macro END .endmacro -.macro HIDDEN name +.macro HIDDEN .private_extern _$0 .endmacro -.macro CALL name +.macro CALL bl _$0 .endmacro # ifdef __ppc64__ |