diff options
author | Ole André Vadla Ravnås <ole.andre.ravnas@tillitech.com> | 2014-04-06 20:53:02 +0200 |
---|---|---|
committer | Ole André Vadla Ravnås <ole.andre.ravnas@tillitech.com> | 2014-04-06 20:57:32 +0200 |
commit | a539f7ffd6783aa11353d13265520e453c565fb4 (patch) | |
tree | 8472f1678b53e27f22ccc1fdd4ad0a475c35dc80 | |
parent | dc33cb3c998da521a960385c1269c3aef552f69f (diff) | |
download | libffi-a539f7ffd6783aa11353d13265520e453c565fb4.tar.gz |
Fix alignment of AArch64 assembler functions
-rw-r--r-- | src/aarch64/sysv.S | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/aarch64/sysv.S b/src/aarch64/sysv.S index 7273b73..169eab8 100644 --- a/src/aarch64/sysv.S +++ b/src/aarch64/sysv.S @@ -47,6 +47,9 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifdef __ELF__ .type CNAME(ffi_call_SYSV), #function #endif +#ifdef __APPLE__ + .align 2 +#endif /* ffi_call_SYSV() @@ -241,6 +244,9 @@ CNAME(ffi_call_SYSV): .text .globl CNAME(ffi_closure_SYSV) +#ifdef __APPLE__ + .align 2 +#endif .cfi_startproc CNAME(ffi_closure_SYSV): stp x29, x30, [sp, #-16]! |