diff options
Diffstat (limited to 'lib/CodeGen/Mangle.h')
-rw-r--r-- | lib/CodeGen/Mangle.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/CodeGen/Mangle.h b/lib/CodeGen/Mangle.h index b3f88b0d68..a8ca09d1cf 100644 --- a/lib/CodeGen/Mangle.h +++ b/lib/CodeGen/Mangle.h @@ -18,12 +18,15 @@ #ifndef LLVM_CLANG_CODEGEN_MANGLE_H #define LLVM_CLANG_CODEGEN_MANGLE_H +#include "CGCXX.h" + namespace llvm { class raw_ostream; } namespace clang { class ASTContext; + class CXXConstructorDecl; class NamedDecl; class VarDecl; @@ -31,6 +34,8 @@ namespace clang { llvm::raw_ostream &os); void mangleGuardVariable(const VarDecl *D, ASTContext &Context, llvm::raw_ostream &os); + void mangleCXXCtor(const CXXConstructorDecl *D, CXXCtorType Type, + ASTContext &Context, llvm::raw_ostream &os); } #endif |