[X86] combineTargetShuffle - commute VPERMV3 shuffles so any load is on the RHS
[llvm-project.git] / llvm / test / CodeGen / SystemZ / tail-call-mem-intrinsics.ll
blobf7f8cfc871d71ff3e0fb36d23a4e1039bcd4f74b
1 ; RUN: llc -mtriple=s390x-linux-gnu < %s | FileCheck %s
3 ; CHECK-LABEL: tail_memmove:
4 ; CHECK: jg memmove
5 define void @tail_memmove(ptr nocapture %p, ptr nocapture readonly %q, i32 %n) #0 {
6 entry:
7   tail call void @llvm.memmove.p0.p0.i32(ptr %p, ptr %q, i32 %n, i1 false)
8   ret void
11 ; CHECK-LABEL: tail_memset:
12 ; CHECK: jg memset
13 define void @tail_memset(ptr nocapture %p, i8 %c, i32 %n) #0 {
14 entry:
15   tail call void @llvm.memset.p0.i32(ptr %p, i8 %c, i32 %n, i1 true)
16   ret void
19 declare void @llvm.memcpy.p0.p0.i32(ptr nocapture, ptr nocapture readonly, i32, i1) #0
20 declare void @llvm.memmove.p0.p0.i32(ptr nocapture, ptr nocapture readonly, i32, i1) #0
21 declare void @llvm.memset.p0.i32(ptr nocapture, i8, i32, i1) #0
23 attributes #0 = { nounwind }