re PR libitm/52482 (libitm INVALID MNEMONIC in .S (powerpc asm))

2015-07-03  Carlos Sánchez de La Lama  <csanchezdll@gmail.com>

	PR target/52482
	* config/powerpc/sjlj.S: Port to Xcode 2.5.

From-SVN: r225389
This commit is contained in:
Carlos Sánchez de La Lama 2015-07-03 17:31:21 +00:00 committed by Mike Stump
parent 9cd711a26c
commit 46ee453a44
2 changed files with 9 additions and 4 deletions

View File

@ -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-04-22 Release Manager 2015-04-22 Release Manager
* GCC 5.1.0 released. * GCC 5.1.0 released.

View File

@ -83,16 +83,16 @@
bl \name bl \name
.endm .endm
#elif defined(_CALL_DARWIN) #elif defined(_CALL_DARWIN)
.macro FUNC name .macro FUNC
.globl _$0 .globl _$0
_$0: _$0:
.endmacro .endmacro
.macro END name .macro END
.endmacro .endmacro
.macro HIDDEN name .macro HIDDEN
.private_extern _$0 .private_extern _$0
.endmacro .endmacro
.macro CALL name .macro CALL
bl _$0 bl _$0
.endmacro .endmacro
# ifdef __ppc64__ # ifdef __ppc64__