aboutsummaryrefslogtreecommitdiff
path: root/lib/AST/MicrosoftMangle.cpp
diff options
context:
space:
mode:
authorTimur Iskhodzhanov <timurrrr@google.com>2012-11-26 08:55:48 +0000
committerTimur Iskhodzhanov <timurrrr@google.com>2012-11-26 08:55:48 +0000
commit79b7cc59658ca477cd943561d2d30cdfe9e09a5a (patch)
treeb8c28a5d4d4f22b6de05db40d2e1e9880b229bc5 /lib/AST/MicrosoftMangle.cpp
parent73ed67cc36b06a380ddc3658beb7a84328c19ff6 (diff)
Fix PR14413 - incorrect mangling of anonymous namespaces with -cxx-abi microsoft
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@168583 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AST/MicrosoftMangle.cpp')
-rw-r--r--lib/AST/MicrosoftMangle.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/AST/MicrosoftMangle.cpp b/lib/AST/MicrosoftMangle.cpp
index 7a12c4da95..d91f512538 100644
--- a/lib/AST/MicrosoftMangle.cpp
+++ b/lib/AST/MicrosoftMangle.cpp
@@ -453,7 +453,7 @@ MicrosoftCXXNameMangler::mangleUnqualifiedName(const NamedDecl *ND,
if (const NamespaceDecl *NS = dyn_cast<NamespaceDecl>(ND)) {
if (NS->isAnonymousNamespace()) {
- Out << "?A";
+ Out << "?A@";
break;
}
}