1 ; RUN: opt < %s -disable-output "-passes=print<da>" -aa-pipeline=basic-aa 2>&1 \
4 ; Test that the dependence analysis generates the correct results when using
5 ; an aliased object that points to a different element in the same array.
6 ; PR33567 - https://bugs.llvm.org/show_bug.cgi?id=33567
8 ; void test1(int *A, int *B, int N) {
11 ; for (int i = 0; i < N; i++)
12 ; B[i] = top[i] + bot[i];
16 ; CHECK: da analyze - input [*|<]!
18 define void @test1(ptr nocapture %A, ptr nocapture %B, i32 %N) #0 {
20 %cmp9 = icmp sgt i32 %N, 0
21 br i1 %cmp9, label %for.body.lr.ph, label %for.end
25 %bot.gep = getelementptr i32, ptr %A, i32 %div
29 %i = phi i32 [ 0, %for.body.lr.ph ], [ %inc, %for.body ]
30 %gep.0 = getelementptr i32, ptr %A, i32 %i
31 %gep.1 = getelementptr i32, ptr %bot.gep, i32 %i
32 %gep.B = getelementptr i32, ptr %B, i32 %i
33 %0 = load i32, ptr %gep.0, align 4
34 %1 = load i32, ptr %gep.1, align 4
35 %add = add nsw i32 %1, %0
36 store i32 %add, ptr %gep.B, align 4
37 %inc = add nsw i32 %i, 1
38 %exitcond = icmp eq i32 %inc, %N
39 br i1 %exitcond, label %for.end, label %for.body
46 ; void test2(int *A, unsigned n) {
48 ; for (unsigned i = 0; i < n; ++i) {
54 ; CHECK: da analyze - consistent anti [1]!
56 define void @test2(ptr, i32) #3 {
57 %3 = getelementptr inbounds i32, ptr %0, i64 1
61 %.0 = phi i32 [ 0, %2 ], [ %14, %13 ]
63 %6 = icmp ult i32 %.0, %5
64 br i1 %6, label %7, label %15
67 %8 = zext i32 %.0 to i64
68 %9 = getelementptr inbounds i32, ptr %3, i64 %8
69 %10 = load i32, ptr %9, align 4
70 %11 = zext i32 %.0 to i64
71 %12 = getelementptr inbounds i32, ptr %0, i64 %11
72 store i32 %10, ptr %12, align 4