bolt/deps/llvm-18.1.8/llvm/test/CodeGen/AArch64/swifttail-arm64_32.ll

17 lines
647 B
LLVM
Raw Normal View History

2025-02-14 19:21:04 +01:00
; RUN: llc -mtriple=arm64_32-apple-watchos %s -o - | FileCheck %s
declare swifttailcc void @pointer_align_callee([8 x i64], i32, i32, i32, ptr)
define swifttailcc void @pointer_align_caller(ptr swiftasync %as, ptr %in) "frame-pointer"="all" {
; CHECK-LABEL: pointer_align_caller:
; CHECK: sub sp, sp, #48
; CHECK: mov [[TWO:w[0-9]+]], #2
; CHECK: mov [[ZERO_ONE:x[0-9]+]], #4294967296
; CHECK: stp [[TWO]], w0, [x29, #24]
; CHECK: str [[ZERO_ONE]], [x29, #16]
; CHECK: add sp, sp, #32
; CHECK: b _pointer_align_callee
alloca i32
musttail call swifttailcc void @pointer_align_callee([8 x i64] undef, i32 0, i32 1, i32 2, ptr %in)
ret void
}