[AMDGPU] Mark AGPR tuple implicit in the first instr of AGPR spills. (#115285)
[llvm-project.git] / llvm / test / CodeGen / AArch64 / no-tail-call-bzero-from-memset.ll
blob34c6c63cc17982b9d364def850562aa9d31a2ff9
1 ; RUN: llc -o - %s | FileCheck %s
2 ; RUN: llc -global-isel -o - %s | FileCheck %s
3 target datalayout = "e-m:o-i64:64-i128:128-n32:64-S128"
4 target triple = "arm64-apple-macosx15.0.0"
6 define ptr @test()  {
7 ; CHECK-LABEL: test:
8 ; CHECK: bl _bzero
9   %1 = tail call ptr @fn(i32 noundef 1) #3
10   tail call void @llvm.memset.p0.i64(ptr noundef nonnull align 1 dereferenceable(1000) %1, i8 noundef 0, i64 noundef 1000, i1 noundef false) #3
11   ret ptr %1
14 declare ptr @fn(i32 noundef)
16 ; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: write)
17 declare void @llvm.memset.p0.i64(ptr nocapture writeonly, i8, i64, i1 immarg) #2
19 attributes #2 = { nocallback nofree nounwind willreturn memory(argmem: write) }
20 attributes #3 = { nounwind optsize }