diff options
author | Andreas Bolka <a@bolka.at> | 2009-08-07 15:42:32 +0000 |
---|---|---|
committer | Andreas Bolka <a@bolka.at> | 2009-08-07 15:42:32 +0000 |
commit | 787591a5940ee82276db5e86d04015644c0d0f29 (patch) | |
tree | 2747036af8d07c57558e0f25ab316f0b9ce550c0 /llvm/test/Analysis | |
parent | 54c847cd6cc5d32e7746dbdc7625019a19aa1f44 (diff) | |
download | bcm5719-llvm-787591a5940ee82276db5e86d04015644c0d0f29.tar.gz bcm5719-llvm-787591a5940ee82276db5e86d04015644c0d0f29.zip |
Fix Strong-SIV testcase.
llvm-svn: 78384
Diffstat (limited to 'llvm/test/Analysis')
-rw-r--r-- | llvm/test/Analysis/LoopDependenceAnalysis/siv-strong.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/Analysis/LoopDependenceAnalysis/siv-strong.ll b/llvm/test/Analysis/LoopDependenceAnalysis/siv-strong.ll index c4e0476442f..3b9bba5d8e2 100644 --- a/llvm/test/Analysis/LoopDependenceAnalysis/siv-strong.ll +++ b/llvm/test/Analysis/LoopDependenceAnalysis/siv-strong.ll @@ -74,7 +74,7 @@ for.body: ; CHECK: 0,2: dep ; CHECK: 1,2: ind %i.next = add i64 %i, 1 - %exitcond = icmp eq i64 %i.next, 256 + %exitcond = icmp eq i64 %i.next, 10 br i1 %exitcond, label %for.end, label %for.body for.end: |