aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/Mangle.h
diff options
context:
space:
mode:
authorMike Stump <mrs@apple.com>2009-09-02 00:56:18 +0000
committerMike Stump <mrs@apple.com>2009-09-02 00:56:18 +0000
commit9124bccde8e4b3531474b108d74720feac898d75 (patch)
tree18ee7ad19a3655824c9c4fd8dfe5a394e4f83d30 /lib/CodeGen/Mangle.h
parentd7eff68dbbbc6b3f8dfd44f6a833c2b320a96e9a (diff)
Add mangling for covariant thunks.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@80747 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/Mangle.h')
-rw-r--r--lib/CodeGen/Mangle.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/CodeGen/Mangle.h b/lib/CodeGen/Mangle.h
index fd886796c7..41629c4c51 100644
--- a/lib/CodeGen/Mangle.h
+++ b/lib/CodeGen/Mangle.h
@@ -36,6 +36,10 @@ namespace clang {
llvm::raw_ostream &os);
void mangleThunk(const NamedDecl *D, bool Virtual, int64_t n, int64_t vn,
ASTContext &Context, llvm::raw_ostream &os);
+ void mangleCovariantThunk(const NamedDecl *D, bool VirtualThis, int64_t nv_t,
+ int64_t v_t, bool VirtualResult, int64_t nv_r,
+ int64_t v_r, ASTContext &Context,
+ llvm::raw_ostream &os);
void mangleGuardVariable(const VarDecl *D, ASTContext &Context,
llvm::raw_ostream &os);
void mangleCXXVtable(QualType T, ASTContext &Context, llvm::raw_ostream &os);