diff options
author | Anna Zaks <ganna@apple.com> | 2013-01-16 01:35:54 +0000 |
---|---|---|
committer | Anna Zaks <ganna@apple.com> | 2013-01-16 01:35:54 +0000 |
commit | 64eb070234bc4cd4fd2debf3a91c6e2d8f0d32d8 (patch) | |
tree | 071b3464e1a0674b1273c9fd90a1c5860a18e178 /lib/StaticAnalyzer/Checkers/RetainCountChecker.cpp | |
parent | f43b7214e812ddca74a6213608c69c960e067956 (diff) |
[analyzer] Refactor: parameter rename.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@172595 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/StaticAnalyzer/Checkers/RetainCountChecker.cpp')
-rw-r--r-- | lib/StaticAnalyzer/Checkers/RetainCountChecker.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/StaticAnalyzer/Checkers/RetainCountChecker.cpp b/lib/StaticAnalyzer/Checkers/RetainCountChecker.cpp index f81168e306..ea1e69db39 100644 --- a/lib/StaticAnalyzer/Checkers/RetainCountChecker.cpp +++ b/lib/StaticAnalyzer/Checkers/RetainCountChecker.cpp @@ -3175,7 +3175,7 @@ bool RetainCountChecker::evalCall(const CallExpr *CE, CheckerContext &C) const { // Invalidate the argument region. state = state->invalidateRegions(ArgRegion, CE, C.blockCount(), LCtx, - /*CausedByPointerEscape*/ false); + /*CausesPointerEscape*/ false); // Restore the refcount status of the argument. if (Binding) |