[cfe-commits] r65322 - /cfe/trunk/lib/Analysis/CFRefCount.cpp

Ted Kremenek kremenek at apple.com
Mon Feb 23 08:54:00 PST 2009


Author: kremenek
Date: Mon Feb 23 10:54:00 2009
New Revision: 65322

URL: http://llvm.org/viewvc/llvm-project?rev=65322&view=rev
Log:
Fix 80 col. violations.

Modified:
    cfe/trunk/lib/Analysis/CFRefCount.cpp

Modified: cfe/trunk/lib/Analysis/CFRefCount.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Analysis/CFRefCount.cpp?rev=65322&r1=65321&r2=65322&view=diff

==============================================================================
--- cfe/trunk/lib/Analysis/CFRefCount.cpp (original)
+++ cfe/trunk/lib/Analysis/CFRefCount.cpp Mon Feb 23 10:54:00 2009
@@ -1099,7 +1099,8 @@
   
   // 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 @@
       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);
     }
     





More information about the cfe-commits mailing list