Print pairwise dependence results, add testcases.
[oota-llvm.git] / test / Analysis / LoopDependenceAnalysis / ziv1.ll
1 ; RUN: llvm-as < %s | opt -disable-output -analyze -lda > %t
2 ; RUN: grep {instructions: 2} %t | count 1
3 ; RUN: grep {0,1: dependent} %t | count 1
4
5 ; x[5] = x[6]
6
7 @x = common global [256 x i32] zeroinitializer, align 4
8
9 define void @foo(...) nounwind {
10 entry:
11   br label %for.body
12
13 for.body:
14   %i = phi i64 [ 0, %entry ], [ %i.next, %for.body ]
15   %x = load i32* getelementptr ([256 x i32]* @x, i32 0, i64 6)
16   store i32 %x, i32* getelementptr ([256 x i32]* @x, i32 0, i64 5)
17   %i.next = add i64 %i, 1
18   %exitcond = icmp eq i64 %i.next, 256
19   br i1 %exitcond, label %for.end, label %for.body
20
21 for.end:
22   ret void
23 }