aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/Mangle.cpp
diff options
context:
space:
mode:
authorMike Stump <mrs@apple.com>2009-05-16 07:57:57 +0000
committerMike Stump <mrs@apple.com>2009-05-16 07:57:57 +0000
commitf5408fe484495ee4efbdd709c8a2c2fdbbbdb328 (patch)
treeb09dd07e36daa3a9cb86a0c6c0ab33144deb0c20 /lib/CodeGen/Mangle.cpp
parent390b4cc8b45a05612349269ef08faab3e4688f06 (diff)
Reflow some comments.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@71937 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/Mangle.cpp')
-rw-r--r--lib/CodeGen/Mangle.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/Mangle.cpp b/lib/CodeGen/Mangle.cpp
index 6f4ec0bd57..c27ef4fd97 100644
--- a/lib/CodeGen/Mangle.cpp
+++ b/lib/CodeGen/Mangle.cpp
@@ -543,8 +543,8 @@ void CXXNameMangler::mangleType(const BuiltinType *T) {
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';
}