]> granicus.if.org Git - clang/commitdiff
Format for 80-cols.
authorMike Stump <mrs@apple.com>
Sat, 7 Feb 2009 20:14:12 +0000 (20:14 +0000)
committerMike Stump <mrs@apple.com>
Sat, 7 Feb 2009 20:14:12 +0000 (20:14 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@64030 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/CGStmt.cpp

index dc7722c4258ddaacfb42175a3c57592ad4a9cc12..c65b8114f37fe2fa28f184f22e323ee953538440 100644 (file)
@@ -466,8 +466,8 @@ void CodeGenFunction::EmitForStmt(const ForStmt &S) {
 
   EmitBlock(CondBlock);
 
-  // Evaluate the condition if present.  If not, treat it as a non-zero-constant
-  // according to 6.8.5.3p2, aka, true.
+  // Evaluate the condition if present.  If not, treat it as a
+  // non-zero-constant according to 6.8.5.3p2, aka, true.
   if (S.getCond()) {
     // As long as the condition is true, iterate the loop.
     llvm::BasicBlock *ForBody = createBasicBlock("for.body");