diff options
author | Charles Davis <cdavis@mines.edu> | 2010-06-11 04:25:47 +0000 |
---|---|---|
committer | Charles Davis <cdavis@mines.edu> | 2010-06-11 04:25:47 +0000 |
commit | 971154db24429b103280d15423b8c200cfb2380c (patch) | |
tree | 609f1c6e420b25b6aed74f798c58ce48dce70090 /lib/CodeGen/Mangle.h | |
parent | 876e994957472eda4b40136d4e1d6e08e2be338f (diff) |
When mangling for the Microsoft C++ ABI, mangle variables in the global
namespace, too.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@105809 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/Mangle.h')
-rw-r--r-- | lib/CodeGen/Mangle.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/Mangle.h b/lib/CodeGen/Mangle.h index a12a140f72..d10334dcbb 100644 --- a/lib/CodeGen/Mangle.h +++ b/lib/CodeGen/Mangle.h @@ -110,7 +110,7 @@ public: /// @name Mangler Entry Points /// @{ - bool shouldMangleDeclName(const NamedDecl *D); + virtual bool shouldMangleDeclName(const NamedDecl *D); virtual void mangleName(const NamedDecl *D, llvm::SmallVectorImpl<char> &); virtual void mangleThunk(const CXXMethodDecl *MD, const ThunkInfo &Thunk, |