Rewrite ARM64 PROLOGUE to make it compatible with xcode/ios

This commit is contained in:
Martin Kroeker 2019-10-04 14:50:03 +02:00 committed by GitHub
parent c0d570a357
commit bb5413863f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 5 deletions

View File

@ -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