aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/Mangle.cpp
diff options
context:
space:
mode:
authorSean Hunt <rideau3@gmail.com>2009-12-04 21:11:13 +0000
committerSean Hunt <rideau3@gmail.com>2009-12-04 21:11:13 +0000
commit5dd6b39fb585f252bd87fb8032888bb208059f0d (patch)
tree9599e1cadbd4e892fd94548945f018f602a1a522 /lib/CodeGen/Mangle.cpp
parent2658f05caf1c1d86608a46ebc7be0b3bb21fef2a (diff)
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
Diffstat (limited to 'lib/CodeGen/Mangle.cpp')
-rw-r--r--lib/CodeGen/Mangle.cpp2
1 files changed, 1 insertions, 1 deletions
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;