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 | 87527c594f94ad72d8d1cb35b91f53e720d67cf1 (patch) | |
tree | ed345fa6fdf9abecdec5cf8478be991cd35b4bdb /lib/Analysis/IVUsers.cpp | |
parent | 86eeeaf87747912a6c2404c383a416b07233c748 (diff) |
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/IVUsers.cpp')
-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 78de8c69ae..9643d16cd5 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. |