diff options
author | Andreas Bolka <a@bolka.at> | 2009-08-05 04:26:05 +0000 |
---|---|---|
committer | Andreas Bolka <a@bolka.at> | 2009-08-05 04:26:05 +0000 |
commit | 13b860992a82ef5242e74103c1e080dfbd9d860f (patch) | |
tree | e49d3e871401ffe2bd3d4630100ab751f6411226 /llvm/test/Analysis | |
parent | cbc7b2654217f514777bba85481319bf3ece86bf (diff) | |
download | bcm5719-llvm-13b860992a82ef5242e74103c1e080dfbd9d860f.tar.gz bcm5719-llvm-13b860992a82ef5242e74103c1e080dfbd9d860f.zip |
ZIV tester for LDA.
llvm-svn: 78157
Diffstat (limited to 'llvm/test/Analysis')
-rw-r--r-- | llvm/test/Analysis/LoopDependenceAnalysis/alias.ll | 2 | ||||
-rw-r--r-- | llvm/test/Analysis/LoopDependenceAnalysis/ziv.ll | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/llvm/test/Analysis/LoopDependenceAnalysis/alias.ll b/llvm/test/Analysis/LoopDependenceAnalysis/alias.ll index b6a5a4fc377..46d38af280e 100644 --- a/llvm/test/Analysis/LoopDependenceAnalysis/alias.ll +++ b/llvm/test/Analysis/LoopDependenceAnalysis/alias.ll @@ -34,7 +34,7 @@ for.body: %i = phi i64 [ 0, %entry ], [ %i.next, %for.body ] %x = load i32* %x.ld.addr store i32 %x, i32* %x.st.addr -; CHECK: 0,1: dep +; CHECK: 0,1: ind %i.next = add i64 %i, 1 %exitcond = icmp eq i64 %i.next, 256 br i1 %exitcond, label %for.end, label %for.body diff --git a/llvm/test/Analysis/LoopDependenceAnalysis/ziv.ll b/llvm/test/Analysis/LoopDependenceAnalysis/ziv.ll index d0235aebc31..3b265ba2733 100644 --- a/llvm/test/Analysis/LoopDependenceAnalysis/ziv.ll +++ b/llvm/test/Analysis/LoopDependenceAnalysis/ziv.ll @@ -12,7 +12,7 @@ for.body: %i = phi i64 [ 0, %entry ], [ %i.next, %for.body ] %x = load i32* getelementptr ([256 x i32]* @x, i32 0, i64 6) store i32 %x, i32* getelementptr ([256 x i32]* @x, i32 0, i64 5) -; CHECK: 0,1: dep +; CHECK: 0,1: ind %i.next = add i64 %i, 1 %exitcond = icmp eq i64 %i.next, 256 br i1 %exitcond, label %for.end, label %for.body @@ -34,7 +34,7 @@ for.body: %i = phi i64 [ 0, %entry ], [ %i.next, %for.body ] %x = load i32* %x.ld.addr store i32 %x, i32* %x.st.addr -; CHECK: 0,1: dep +; CHECK: 0,1: ind %i.next = add i64 %i, 1 %exitcond = icmp eq i64 %i.next, 256 br i1 %exitcond, label %for.end, label %for.body |