diff options
author | Jordan Rose <jordan_rose@apple.com> | 2012-11-01 00:18:27 +0000 |
---|---|---|
committer | Jordan Rose <jordan_rose@apple.com> | 2012-11-01 00:18:27 +0000 |
commit | 14fe9f363163c78ff8bd7f6f29897e8215fc6cd5 (patch) | |
tree | b6159c58bde57c33c5cf5d9ce24f4934979948ea /clang/lib/StaticAnalyzer/Checkers/RetainCountChecker.cpp | |
parent | 8565e50ad4557d2734f84e35d800845f4fc85aa3 (diff) | |
download | bcm5719-llvm-14fe9f363163c78ff8bd7f6f29897e8215fc6cd5.tar.gz bcm5719-llvm-14fe9f363163c78ff8bd7f6f29897e8215fc6cd5.zip |
[analyzer] Rename ConditionTruthVal::isTrue to isConstrainedTrue.
(and the same for isFalse)
No functionality change.
llvm-svn: 167186
Diffstat (limited to 'clang/lib/StaticAnalyzer/Checkers/RetainCountChecker.cpp')
-rw-r--r-- | clang/lib/StaticAnalyzer/Checkers/RetainCountChecker.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker.cpp b/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker.cpp index 36e17faf4f8..274eef8678b 100644 --- a/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker.cpp +++ b/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker.cpp @@ -3448,7 +3448,9 @@ ProgramStateRef RetainCountChecker::evalAssume(ProgramStateRef state, for (RefBindings::iterator I = B.begin(), E = B.end(); I != E; ++I) { // Check if the symbol is null stop tracking the symbol. - if (state->getConstraintManager().isNull(state, I.getKey()).isTrue()) { + ConstraintManager &CMgr = state->getConstraintManager(); + ConditionTruthVal AllocFailed = CMgr.isNull(state, I.getKey()); + if (AllocFailed.isConstrainedTrue()) { changed = true; B = RefBFactory.remove(B, I.getKey()); } |