Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / AArch64 / swift-async-reg.ll
blob5ce1de642583d1b48c948022904b76524f728eb8
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 ptr @argument(ptr swiftasync %in) {
6 ; CHECK-LABEL: argument:
7 ; CHECK: mov x0, x22
9   ret ptr %in
12 define void @call(ptr %in) {
13 ; CHECK-LABEL: call:
14 ; CHECK: mov x22, x0
16   call ptr @argument(ptr swiftasync %in)
17   ret void