[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / CodeGen / AArch64 / swift-async-reg.ll
blob8b23c4b35b2603240bd226cfc59492ca5017c099
1 ; RUN: llc -mtriple=arm64-apple-ios %s -o - | FileCheck %s
2 ; RUN: llc -mtriple=arm64-apple-ios %s -o - -global-isel | FileCheck %s
3 ; RUN: llc -mtriple=arm64-apple-ios %s -o - -fast-isel | FileCheck %s
5 define i8* @argument(i8* swiftasync %in) {
6 ; CHECK-LABEL: argument:
7 ; CHECK: mov x0, x22
9   ret i8* %in
12 define void @call(i8* %in) {
13 ; CHECK-LABEL: call:
14 ; CHECK: mov x22, x0
16   call i8* @argument(i8* swiftasync %in)
17   ret void