diff options
author | John McCall <rjmccall@apple.com> | 2010-07-14 04:38:21 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2010-07-14 04:38:21 +0000 |
commit | f1adcddef211b6605eb7fe5341cc110a801b4f5f (patch) | |
tree | 167a7f07102c4b3fcfca010f0bd9fbb64a488854 /lib/CodeGen/Mangle.cpp | |
parent | 0512e48ea1664dd0d3af0dd29bb46bbded040d56 (diff) |
Remove a few mangling FIXMEs:
- TSTs whose template is a template template parameter already work
- we don't provide an imaginary type, so we can't mangle one
- we don't need a generic FIXME for vendor type qualifiers
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@108317 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/Mangle.cpp')
-rw-r--r-- | lib/CodeGen/Mangle.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/CodeGen/Mangle.cpp b/lib/CodeGen/Mangle.cpp index 5befe623ba..41178c2a24 100644 --- a/lib/CodeGen/Mangle.cpp +++ b/lib/CodeGen/Mangle.cpp @@ -1318,8 +1318,6 @@ void CXXNameMangler::mangleType(const TemplateTypeParmType *T) { mangleTemplateParameter(T->getIndex()); } -// FIXME: <type> ::= <template-template-param> <template-args> - // <type> ::= P <type> # pointer-to void CXXNameMangler::mangleType(const PointerType *T) { Out << 'P'; @@ -1953,9 +1951,6 @@ void CXXNameMangler::mangleExpression(const Expr *E) { } } -// FIXME: <type> ::= G <type> # imaginary (C 2000) -// FIXME: <type> ::= U <source-name> <type> # vendor extended type qualifier - void CXXNameMangler::mangleCXXCtorType(CXXCtorType T) { // <ctor-dtor-name> ::= C1 # complete object constructor // ::= C2 # base object constructor |