Change memcpy/memset/memmove to have dest and source alignments.
[oota-llvm.git] / test / CodeGen / AArch64 / simple-macho.ll
1 ; RUN: llc -mtriple=arm64-macho -o - %s | FileCheck %s
2 ; RUN: llc -mtriple=arm64-macho -filetype=obj -o %t %s
3 ; RUN: llvm-objdump -triple=arm64-macho -d %t | FileCheck --check-prefix=CHECK-OBJ %s
4
5 define void @foo() {
6 ; CHECK-LABEL: _foo:
7 ; CHECK: ret
8
9 ; CHECK-OBJ: 0: c0 03 5f d6 ret
10
11   ret void
12 }