Browse Source

Rewrite ARM64 PROLOGUE to make it compatible with xcode/ios

tags/v0.3.8^2
Martin Kroeker GitHub 6 years ago
parent
commit
bb5413863f
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 5 deletions
  1. +7
    -5
      common_arm64.h

+ 7
- 5
common_arm64.h View File

@@ -103,12 +103,14 @@ static inline int blas_quickdivide(blasint x, blasint y){

#if defined(ASSEMBLER) && !defined(NEEDPARAM)

#define PROLOGUE \
.text ;\
.align 4 ;\
.global REALNAME ;\
.type REALNAME, %function ;\
.macro PROLOGUE
.text ;
.p2align 2 ;
.global REALNAME ;
.type REALNAME, %function ;
REALNAME:
.endm


#define EPILOGUE



Loading…
Cancel
Save