diff options
author | John McCall <rjmccall@apple.com> | 2011-06-17 06:50:50 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2011-06-17 06:50:50 +0000 |
commit | 71c482c76c67ad4240757c4e319ffdb72272b8ee (patch) | |
tree | 86de06141e7eda5c495b98f6111bbd7b8a87e428 /lib/StaticAnalyzer/Core/CFRefCount.cpp | |
parent | 7acddacc921cd0b3f813443a8641eeddb82dfbd4 (diff) |
Initialize a couple of variables to shut GCC up.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@133246 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/StaticAnalyzer/Core/CFRefCount.cpp')
-rw-r--r-- | lib/StaticAnalyzer/Core/CFRefCount.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/StaticAnalyzer/Core/CFRefCount.cpp b/lib/StaticAnalyzer/Core/CFRefCount.cpp index 33118fa901..70646e9f8b 100644 --- a/lib/StaticAnalyzer/Core/CFRefCount.cpp +++ b/lib/StaticAnalyzer/Core/CFRefCount.cpp @@ -3582,7 +3582,7 @@ void RetainReleaseChecker::checkPostStmt(const CastExpr *CE, if (!BE) return; - ArgEffect AE; + ArgEffect AE = IncRef; switch (BE->getBridgeKind()) { case clang::OBC_Bridge: |