diff options
author | John McCall <rjmccall@apple.com> | 2010-09-08 01:44:27 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2010-09-08 01:44:27 +0000 |
commit | 68ff03728a5036dbad626a93144873a1470d27fd (patch) | |
tree | 7c3a6081c18495776e7f242038ee317cc606041f /clang/lib/CodeGen/MicrosoftCXXABI.cpp | |
parent | 64d842ec726ffba3229360822782a7f4704cb7a2 (diff) | |
download | bcm5719-llvm-68ff03728a5036dbad626a93144873a1470d27fd.tar.gz bcm5719-llvm-68ff03728a5036dbad626a93144873a1470d27fd.zip |
Implement ARM static local initialization guards, which are more compact than
Itanium guards and use a slightly different compiled-in API.
llvm-svn: 113330
Diffstat (limited to 'clang/lib/CodeGen/MicrosoftCXXABI.cpp')
-rw-r--r-- | clang/lib/CodeGen/MicrosoftCXXABI.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/clang/lib/CodeGen/MicrosoftCXXABI.cpp b/clang/lib/CodeGen/MicrosoftCXXABI.cpp index 9407335e328..baa6ed3f827 100644 --- a/clang/lib/CodeGen/MicrosoftCXXABI.cpp +++ b/clang/lib/CodeGen/MicrosoftCXXABI.cpp @@ -91,8 +91,6 @@ public: virtual void mangleCXXDtorThunk(const CXXDestructorDecl *DD, CXXDtorType Type, const ThisAdjustment &ThisAdjustment, llvm::SmallVectorImpl<char> &); - virtual void mangleGuardVariable(const VarDecl *D, - llvm::SmallVectorImpl<char> &); virtual void mangleCXXVTable(const CXXRecordDecl *RD, llvm::SmallVectorImpl<char> &); virtual void mangleCXXVTT(const CXXRecordDecl *RD, @@ -1175,10 +1173,6 @@ void MicrosoftMangleContext::mangleCXXDtorThunk(const CXXDestructorDecl *DD, llvm::SmallVectorImpl<char> &) { assert(false && "Can't yet mangle destructor thunks!"); } -void MicrosoftMangleContext::mangleGuardVariable(const VarDecl *D, - llvm::SmallVectorImpl<char> &) { - assert(false && "Can't yet mangle guard variables!"); -} void MicrosoftMangleContext::mangleCXXVTable(const CXXRecordDecl *RD, llvm::SmallVectorImpl<char> &) { assert(false && "Can't yet mangle virtual tables!"); |