diff options
author | Mike Stump <mrs@apple.com> | 2009-09-02 00:25:38 +0000 |
---|---|---|
committer | Mike Stump <mrs@apple.com> | 2009-09-02 00:25:38 +0000 |
commit | 141c5afc2bbb550b83f18e0284585b5ae477ad2a (patch) | |
tree | 9ccd1cdaea6695b582575071e01ac56655316474 /lib/CodeGen/Mangle.h | |
parent | 7f890478709c7f5bef361aef12e52819cde5df43 (diff) |
Add mangling for thunks.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@80743 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/Mangle.h')
-rw-r--r-- | lib/CodeGen/Mangle.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/CodeGen/Mangle.h b/lib/CodeGen/Mangle.h index 8f0a32da88..a2fba4e669 100644 --- a/lib/CodeGen/Mangle.h +++ b/lib/CodeGen/Mangle.h @@ -34,6 +34,8 @@ namespace clang { bool mangleName(const NamedDecl *D, ASTContext &Context, llvm::raw_ostream &os); + void mangleThunkName(const NamedDecl *D, bool Virtual, int64_t n, + int64_t vn, 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); |