From: Mike Stump Date: Sat, 7 Feb 2009 20:14:12 +0000 (+0000) Subject: Format for 80-cols. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=20926c6eaad539459925d857f64600cd4cc77e99;p=clang Format for 80-cols. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@64030 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/CGStmt.cpp b/lib/CodeGen/CGStmt.cpp index dc7722c425..c65b8114f3 100644 --- a/lib/CodeGen/CGStmt.cpp +++ b/lib/CodeGen/CGStmt.cpp @@ -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");