diff options
author | Ted Kremenek <kremenek@apple.com> | 2009-02-23 16:54:00 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2009-02-23 16:54:00 +0000 |
commit | 4634735e0aeb2371c3f75578978ec89f87651ad4 (patch) | |
tree | be0dce5b97719be6c81b812f18dcfefb5a405d87 /lib/Analysis/CFRefCount.cpp | |
parent | 6ad315a4bee79827a79575c7b3aa47014bcb3849 (diff) |
Fix 80 col. violations.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@65322 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/CFRefCount.cpp')
-rw-r--r-- | lib/Analysis/CFRefCount.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/Analysis/CFRefCount.cpp b/lib/Analysis/CFRefCount.cpp index efd1c85f2b..39edcfd8ad 100644 --- a/lib/Analysis/CFRefCount.cpp +++ b/lib/Analysis/CFRefCount.cpp @@ -1099,7 +1099,8 @@ void RetainSummaryManager::InitializeMethodSummaries() { // Create the "init" selector. It just acts as a pass-through for the // receiver. - RetainSummary* InitSumm = getPersistentSummary(RetEffect::MakeReceiverAlias()); + RetainSummary* InitSumm = + getPersistentSummary(RetEffect::MakeReceiverAlias()); addNSObjectMethSummary(GetNullarySelector("init", Ctx), InitSumm); // The next methods are allocators. @@ -2883,7 +2884,8 @@ void CFRefCount::EvalDeadSymbols(ExplodedNodeSet<GRState>& Dst, CFRefBug *BT = static_cast<CFRefBug*>(I->second ? leakAtReturn : leakWithinFunction); assert(BT && "BugType not initialized."); - CFRefLeakReport* report = new CFRefLeakReport(*BT, *this, N, I->first, Eng); + CFRefLeakReport* report = new CFRefLeakReport(*BT, *this, N, + I->first, Eng); BR->EmitReport(report); } |