From: Sean Hunt Date: Fri, 4 Dec 2009 21:11:13 +0000 (+0000) Subject: Put in FIXME that this mangling is not official in. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5dd6b39fb585f252bd87fb8032888bb208059f0d;p=clang Put in FIXME that this mangling is not official in. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@90594 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/Mangle.cpp b/lib/CodeGen/Mangle.cpp index 019a39e28b..4d021e8964 100644 --- a/lib/CodeGen/Mangle.cpp +++ b/lib/CodeGen/Mangle.cpp @@ -482,7 +482,7 @@ void CXXNameMangler::mangleUnqualifiedName(const NamedDecl *ND) { break; case DeclarationName::CXXLiteralOperatorName: - // Guessing based on existing ABI. + // FIXME: This mangling is not yet official. Out << "li"; mangleSourceName(Name.getCXXLiteralIdentifier()); break;