[NFC][Py Reformat] Reformat python files in llvm
[llvm-project.git] / llvm / test / CodeGen / ARM / tailcall-mem-intrinsics.ll
blob39bfba2ad6f700925e13a8b63306efdc28eeb434
1 ; RUN: llc -mtriple=arm-none-eabi < %s | FileCheck %s
3 ; CHECK-LABEL: tail_memcpy_ret
4 ; CHECK: bl     __aeabi_memcpy
5 define ptr @tail_memcpy_ret(ptr nocapture %p, ptr nocapture readonly %q, i32 %n) #0 {
6 entry:
7   tail call void @llvm.memcpy.p0.p0.i32(ptr %p, ptr %q, i32 %n, i1 false)
8   ret ptr %p
11 ; CHECK-LABEL: tail_memmove_ret
12 ; CHECK: bl     __aeabi_memmove
13 define ptr @tail_memmove_ret(ptr nocapture %p, ptr nocapture readonly %q, i32 %n) #0 {
14 entry:
15   tail call void @llvm.memmove.p0.p0.i32(ptr %p, ptr %q, i32 %n, i1 false)
16   ret ptr %p
19 ; CHECK-LABEL: tail_memset_ret
20 ; CHECK: bl     __aeabi_memset
21 define ptr @tail_memset_ret(ptr nocapture %p, i8 %c, i32 %n) #0 {
22 entry:
23   tail call void @llvm.memset.p0.i32(ptr %p, i8 %c, i32 %n, i1 false)
24   ret ptr %p
27 declare void @llvm.memcpy.p0.p0.i32(ptr nocapture, ptr nocapture readonly, i32, i1) #0
28 declare void @llvm.memmove.p0.p0.i32(ptr nocapture, ptr nocapture readonly, i32, i1) #0
29 declare void @llvm.memset.p0.i32(ptr nocapture, i8, i32, i1) #0
31 attributes #0 = { nounwind }