[NFC][RemoveDIs] Prefer iterators over inst-pointers in InstCombine
[llvm-project.git] / llvm / test / CodeGen / Hexagon / loop-idiom / hexagon-memmove2.ll
blob234e4f56b5d818ca085c24ce6cd67640ce8e18e9
1 ; RUN: opt -hexagon-loop-idiom -S -mtriple hexagon-unknown-elf < %s \
2 ; RUN:  | FileCheck %s
4 define void @PR14241(ptr %s, i64 %size) #0 {
5 ; Ensure that we don't form a memcpy for strided loops. Briefly, when we taught
6 ; LoopIdiom about memmove and strided loops, this got miscompiled into a memcpy
7 ; instead of a memmove. If we get the memmove transform back, this will catch
8 ; regressions.
10 ; CHECK-LABEL: @PR14241(
12 entry:
13   %end.idx = add i64 %size, -1
14   %end.ptr = getelementptr inbounds i32, ptr %s, i64 %end.idx
15   br label %while.body
16 ; CHECK-NOT: memcpy
17 ; CHECK: memmove
19 while.body:
20   %phi.ptr = phi ptr [ %s, %entry ], [ %next.ptr, %while.body ]
21   %src.ptr = getelementptr inbounds i32, ptr %phi.ptr, i64 1
22   %val = load i32, ptr %src.ptr, align 4
23 ; CHECK: load
24   store i32 %val, ptr %phi.ptr, align 4
25 ; CHECK: store
26   %next.ptr = getelementptr inbounds i32, ptr %phi.ptr, i64 1
27   %cmp = icmp eq ptr %next.ptr, %end.ptr
28   br i1 %cmp, label %exit, label %while.body
30 exit:
31   ret void
32 ; CHECK: ret void
35 attributes #0 = { nounwind }