Rewrite ARM64 PROLOGUE to make it compatible with xcode/ios
This commit is contained in:
parent
c0d570a357
commit
bb5413863f
|
@ -103,12 +103,14 @@ static inline int blas_quickdivide(blasint x, blasint y){
|
||||||
|
|
||||||
#if defined(ASSEMBLER) && !defined(NEEDPARAM)
|
#if defined(ASSEMBLER) && !defined(NEEDPARAM)
|
||||||
|
|
||||||
#define PROLOGUE \
|
.macro PROLOGUE
|
||||||
.text ;\
|
.text ;
|
||||||
.align 4 ;\
|
.p2align 2 ;
|
||||||
.global REALNAME ;\
|
.global REALNAME ;
|
||||||
.type REALNAME, %function ;\
|
.type REALNAME, %function ;
|
||||||
REALNAME:
|
REALNAME:
|
||||||
|
.endm
|
||||||
|
|
||||||
|
|
||||||
#define EPILOGUE
|
#define EPILOGUE
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue