diff options
author | Dan Gohman <gohman@apple.com> | 2010-04-11 19:29:41 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-04-11 19:29:41 +0000 |
commit | 4e03809b138b1039b19e6fe679ae4ed8a8a16c89 (patch) | |
tree | ed345fa6fdf9abecdec5cf8478be991cd35b4bdb /lib/Analysis | |
parent | 2b3c3647c4f2e173b12eeda14620d37ad10336a9 (diff) | |
download | external_llvm-4e03809b138b1039b19e6fe679ae4ed8a8a16c89.zip external_llvm-4e03809b138b1039b19e6fe679ae4ed8a8a16c89.tar.gz external_llvm-4e03809b138b1039b19e6fe679ae4ed8a8a16c89.tar.bz2 |
Delete a dead check.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@100983 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis')
-rw-r--r-- | lib/Analysis/IVUsers.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/Analysis/IVUsers.cpp b/lib/Analysis/IVUsers.cpp index 78de8c6..9643d16 100644 --- a/lib/Analysis/IVUsers.cpp +++ b/lib/Analysis/IVUsers.cpp @@ -82,7 +82,6 @@ bool IVUsers::AddUsersIfInteresting(Instruction *I) { // Get the symbolic expression for this instruction. const SCEV *ISE = SE->getSCEV(I); - if (isa<SCEVCouldNotCompute>(ISE)) return false; // If we've come to an uninteresting expression, stop the traversal and // call this a user. |