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/Mangle.cpp b/lib/CodeGen/Mangle.cpp
index 6f4ec0b..c27ef4f 100644
--- a/lib/CodeGen/Mangle.cpp
+++ b/lib/CodeGen/Mangle.cpp
@@ -543,8 +543,8 @@
 void CXXNameMangler::mangleType(const FunctionType *T) {
   // <function-type> ::= F [Y] <bare-function-type> E
   Out << 'F';
-  // FIXME: We don't have enough information in the AST to produce the
-  // 'Y' encoding for extern "C" function types.
+  // FIXME: We don't have enough information in the AST to produce the 'Y'
+  // encoding for extern "C" function types.
   mangleBareFunctionType(T, /*MangleReturnType=*/true);
   Out << 'E';
 }