From 20926c6eaad539459925d857f64600cd4cc77e99 Mon Sep 17 00:00:00 2001 From: Mike Stump Date: Sat, 7 Feb 2009 20:14:12 +0000 Subject: [PATCH] Format for 80-cols. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@64030 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/CGStmt.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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"); -- 2.40.0