Reflow some comments.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@71937 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/CodeGenFunction.cpp b/lib/CodeGen/CodeGenFunction.cpp
index c74f834..04661fc 100644
--- a/lib/CodeGen/CodeGenFunction.cpp
+++ b/lib/CodeGen/CodeGenFunction.cpp
@@ -66,8 +66,8 @@
 }
 
 bool CodeGenFunction::hasAggregateLLVMType(QualType T) {
-  // FIXME: Use positive checks instead of negative ones to be more
-  // robust in the face of extension.
+  // FIXME: Use positive checks instead of negative ones to be more robust in
+  // the face of extension.
   return !T->hasPointerRepresentation() &&!T->isRealType() &&
     !T->isVoidType() && !T->isVectorType() && !T->isFunctionType() && 
     !T->isBlockPointerType();
@@ -105,9 +105,9 @@
     }
   }
 
-  // FIXME: We are at an unreachable point, there is no reason to emit
-  // the block unless it has uses. However, we still need a place to
-  // put the debug region.end for now.
+  // FIXME: We are at an unreachable point, there is no reason to emit the block
+  // unless it has uses. However, we still need a place to put the debug
+  // region.end for now.
 
   EmitBlock(ReturnBlock);
 }
@@ -663,8 +663,8 @@
   assert(!CleanupEntries.empty() && 
          "Trying to add branch fixup without cleanup block!");
   
-  // FIXME: We could be more clever here and check if there's already a 
-  // branch fixup for this destination and recycle it.
+  // FIXME: We could be more clever here and check if there's already a branch
+  // fixup for this destination and recycle it.
   CleanupEntries.back().BranchFixups.push_back(BI);
 }