[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / CodeGen / Hexagon / hvx-loopidiom-memcpy.ll
blobab7bf1b4b0e865e3f31239b8aebf069d8774a580
1 ; RUN: opt -march=hexagon -hexagon-loop-idiom -S < %s | FileCheck %s
3 ; Make sure we don't convert load/store loops into memcpy if the access type
4 ; is a vector. Using vector instructions is generally better in such cases.
6 ; CHECK-NOT: @llvm.memcpy
8 %s.0 = type { i32 }
10 define void @f0(ptr noalias %a0, ptr noalias %a1) #0 align 2 {
11 b0:
12   br i1 undef, label %b1, label %b2
14 b1:                                               ; preds = %b1, %b0
15   %v0 = phi i32 [ %v7, %b1 ], [ 0, %b0 ]
16   %v1 = mul nuw nsw i32 %v0, 64
17   %v2 = getelementptr %s.0, ptr %a0, i32 %v1
18   %v3 = getelementptr %s.0, ptr %a1, i32 %v1
19   %v5 = load <64 x i32>, ptr %v2, align 256
20   store <64 x i32> %v5, ptr %v3, align 256
21   %v7 = add nuw nsw i32 %v0, 1
22   br i1 undef, label %b1, label %b2
24 b2:                                               ; preds = %b1, %b0
25   ret void
28 attributes #0 = { "target-cpu"="hexagonv60" "target-features"="+hvx,+hvx-length64b" }