diff options
author | Mike Stump <mrs@apple.com> | 2009-02-07 20:14:12 +0000 |
---|---|---|
committer | Mike Stump <mrs@apple.com> | 2009-02-07 20:14:12 +0000 |
commit | 56d2a15829a67868460e6165f3a08b7121b748eb (patch) | |
tree | bcd7e36785148fef047d74980ccdaa7b7e97d420 /clang/lib/CodeGen | |
parent | 5822f08cd6df25a715c9b3e5c5bcc84458078f71 (diff) | |
download | bcm5719-llvm-56d2a15829a67868460e6165f3a08b7121b748eb.tar.gz bcm5719-llvm-56d2a15829a67868460e6165f3a08b7121b748eb.zip |
Format for 80-cols.
llvm-svn: 64030
Diffstat (limited to 'clang/lib/CodeGen')
-rw-r--r-- | clang/lib/CodeGen/CGStmt.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/CodeGen/CGStmt.cpp b/clang/lib/CodeGen/CGStmt.cpp index dc7722c4258..c65b8114f37 100644 --- a/clang/lib/CodeGen/CGStmt.cpp +++ b/clang/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"); |