diff options
author | Dan Gohman <gohman@apple.com> | 2009-06-24 00:30:26 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-06-24 00:30:26 +0000 |
commit | 4d289bf4af88759be173a1a809bf8c092d729764 (patch) | |
tree | f966417c557d1dd801ea36b91cf7b694ab8f7062 /lib/Analysis/ScalarEvolution.cpp | |
parent | ea080be98625d86dc0a574f71d7df69e2351734c (diff) |
Add an isAllOnesValue utility function, similar to isZero and isOne.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74032 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/ScalarEvolution.cpp')
-rw-r--r-- | lib/Analysis/ScalarEvolution.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/Analysis/ScalarEvolution.cpp b/lib/Analysis/ScalarEvolution.cpp index 5cbb5fac8a..6e5dfbb35e 100644 --- a/lib/Analysis/ScalarEvolution.cpp +++ b/lib/Analysis/ScalarEvolution.cpp @@ -132,6 +132,12 @@ bool SCEV::isOne() const { return false; } +bool SCEV::isAllOnesValue() const { + if (const SCEVConstant *SC = dyn_cast<SCEVConstant>(this)) + return SC->getValue()->isAllOnesValue(); + return false; +} + SCEVCouldNotCompute::SCEVCouldNotCompute() : SCEV(scCouldNotCompute) {} |