diff options
author | Mike Stump <mrs@apple.com> | 2009-12-03 01:22:05 +0000 |
---|---|---|
committer | Mike Stump <mrs@apple.com> | 2009-12-03 01:22:05 +0000 |
commit | 7087d75db1df40b450ebe59acad8d15550348e02 (patch) | |
tree | 0f13a0461188f6c2afaf3fe616f401bf863043c0 /lib/CodeGen | |
parent | 107b4cae9be7dc59315e28f65b555cb2bd5f4574 (diff) |
Note a failure I saw from the g++ testsuite:
FAIL: g++.old-deja/g++.mike/eh23.C (test for excess errors)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@90374 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen')
-rw-r--r-- | lib/CodeGen/Mangle.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/CodeGen/Mangle.cpp b/lib/CodeGen/Mangle.cpp index d70d2567cf..1aea1873fd 100644 --- a/lib/CodeGen/Mangle.cpp +++ b/lib/CodeGen/Mangle.cpp @@ -1246,6 +1246,7 @@ bool CXXNameMangler::mangleStandardSubstitution(const NamedDecl *ND) { // <substitution> ::= St # ::std:: // FIXME: type_info == comes out as __ZNK3std9type_infoeqERKS0_ instead of // __ZNKSt9type_infoeqERKS_ + // FIXME: __ZSt13set_terminatePFvvE comes out as __ZNSt13set_terminateEPFvvE. if (const NamespaceDecl *NS = dyn_cast<NamespaceDecl>(ND)) { if (isStdNamespace(NS)) { Out << "St"; |