]> granicus.if.org Git - clang/commitdiff
Fit into 80-col.
authorMike Stump <mrs@apple.com>
Sat, 7 Feb 2009 17:18:33 +0000 (17:18 +0000)
committerMike Stump <mrs@apple.com>
Sat, 7 Feb 2009 17:18:33 +0000 (17:18 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@64020 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/CGStmt.cpp

index 42512d18477694d22194bced96f9933ffb6acb86..4e2bca59ea6e727651b6bf81e68a98696c62379f 100644 (file)
@@ -358,9 +358,9 @@ void CodeGenFunction::EmitWhileStmt(const WhileStmt &S) {
   llvm::BasicBlock *LoopHeader = createBasicBlock("while.cond");
   EmitBlock(LoopHeader);
   
-  // Evaluate the conditional in the while header.  C99 6.8.5.1: The evaluation
-  // of the controlling expression takes place before each execution of the loop
-  // body. 
+  // Evaluate the conditional in the while header.  C99 6.8.5.1: The
+  // evaluation of the controlling expression takes place before each
+  // execution of the loop body.
   llvm::Value *BoolCondVal = EvaluateExprAsBool(S.getCond());
 
   // while(1) is common, avoid extra exit blocks.  Be sure