diff options
author | Ted Kremenek <kremenek@apple.com> | 2009-03-11 02:22:59 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2009-03-11 02:22:59 +0000 |
commit | 66b527193aa6f3aa94c03f6769c42d7642e1e147 (patch) | |
tree | 2ea9a24ea0d0dad5f12371c346cdef54547b9f67 /lib/Analysis/SimpleConstraintManager.cpp | |
parent | 3df6421150271266b5a90fd4c6bfa6566c38c036 (diff) |
Added method "canReasonAbout" to ConstraintManager. This method returns true if
a ConstraintManager can usefully reason about the given SVal.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@66624 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/SimpleConstraintManager.cpp')
-rw-r--r-- | lib/Analysis/SimpleConstraintManager.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/Analysis/SimpleConstraintManager.cpp b/lib/Analysis/SimpleConstraintManager.cpp index c72f39c2fc..82cc0bb7bc 100644 --- a/lib/Analysis/SimpleConstraintManager.cpp +++ b/lib/Analysis/SimpleConstraintManager.cpp @@ -20,6 +20,10 @@ namespace clang { SimpleConstraintManager::~SimpleConstraintManager() {} +bool SimpleConstraintManager::canReasonAbout(SVal X) const { + return true; +} + const GRState* SimpleConstraintManager::Assume(const GRState* St, SVal Cond, bool Assumption, bool& isFeasible) { |