diff options
author | Chris Lattner <sabre@nondot.org> | 2010-12-18 20:22:49 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-12-18 20:22:49 +0000 |
commit | a37029cd24105f645a694abbafbc9bf1212708b0 (patch) | |
tree | 42c81bd650933f98d94b2d5ba51410df3b63e12f /lib/Transforms/Utils/SimplifyCFG.cpp | |
parent | c8bd78c16ba0489835f2eb6101d9bdb96301cfe7 (diff) |
simplify this a bit.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@122156 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Utils/SimplifyCFG.cpp')
-rw-r--r-- | lib/Transforms/Utils/SimplifyCFG.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/Transforms/Utils/SimplifyCFG.cpp b/lib/Transforms/Utils/SimplifyCFG.cpp index 1eb8e8eecf..c4fce5efdb 100644 --- a/lib/Transforms/Utils/SimplifyCFG.cpp +++ b/lib/Transforms/Utils/SimplifyCFG.cpp @@ -315,8 +315,7 @@ GatherConstantCompares(Value *V, std::vector<ConstantInt*> &Vals, Value *&Extra, // If we have "x ult 3" comparison, for example, then we can add 0,1,2 to // the set. ConstantRange Span = - ConstantRange::makeICmpRegion(ICI->getPredicate(), - ConstantRange(C->getValue())); + ConstantRange::makeICmpRegion(ICI->getPredicate(), C->getValue()); // If this is an and/!= check then we want to optimize "x ugt 2" into // x != 0 && x != 1. |