[cfe-commits] r138413 - /cfe/trunk/lib/CodeGen/CGDecl.cpp

Eric Christopher echristo at apple.com
Tue Aug 23 16:44:09 PDT 2011


Author: echristo
Date: Tue Aug 23 18:44:09 2011
New Revision: 138413

URL: http://llvm.org/viewvc/llvm-project?rev=138413&view=rev
Log:
Whitespace and 80-col cleanup.

Modified:
    cfe/trunk/lib/CodeGen/CGDecl.cpp

Modified: cfe/trunk/lib/CodeGen/CGDecl.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/CodeGen/CGDecl.cpp?rev=138413&r1=138412&r2=138413&view=diff
==============================================================================
--- cfe/trunk/lib/CodeGen/CGDecl.cpp (original)
+++ cfe/trunk/lib/CodeGen/CGDecl.cpp Tue Aug 23 18:44:09 2011
@@ -877,8 +877,8 @@
 
   if (const StmtExpr *SE = dyn_cast<StmtExpr>(e)) {
     const CompoundStmt *CS = SE->getSubStmt();
-    for (CompoundStmt::const_body_iterator BI = CS->body_begin(), BE = CS->body_end()
-         ;BI != BE; ++BI)
+    for (CompoundStmt::const_body_iterator BI = CS->body_begin(),
+	   BE = CS->body_end(); BI != BE; ++BI)
       if (Expr *E = dyn_cast<Expr>((*BI)))
         if (isCapturedBy(var, E))
             return true;
@@ -933,7 +933,6 @@
   if (isTrivialInitializer(Init))
     return;
 
-
   CharUnits alignment = emission.Alignment;
 
   // Check whether this is a byref variable that's potentially





More information about the cfe-commits mailing list