diff options
author | Mike Stump <mrs@apple.com> | 2009-09-11 23:25:56 +0000 |
---|---|---|
committer | Mike Stump <mrs@apple.com> | 2009-09-11 23:25:56 +0000 |
commit | 80f6ac5a4f1625cdc1d8a79d32bdcf2322f916b3 (patch) | |
tree | c5ecd1b78f65c16572e3f6740caa9fd7b0f421e5 /clang/lib/CodeGen/Mangle.h | |
parent | cc2427c343d84c5526b5d12d4d151c8dc2e87fb7 (diff) | |
download | bcm5719-llvm-80f6ac5a4f1625cdc1d8a79d32bdcf2322f916b3.tar.gz bcm5719-llvm-80f6ac5a4f1625cdc1d8a79d32bdcf2322f916b3.zip |
Add basic covariant thunk generation support. WIP.
llvm-svn: 81585
Diffstat (limited to 'clang/lib/CodeGen/Mangle.h')
-rw-r--r-- | clang/lib/CodeGen/Mangle.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/clang/lib/CodeGen/Mangle.h b/clang/lib/CodeGen/Mangle.h index 16f1ae6d3fb..91143a5c4bd 100644 --- a/clang/lib/CodeGen/Mangle.h +++ b/clang/lib/CodeGen/Mangle.h @@ -37,10 +37,9 @@ namespace clang { llvm::raw_ostream &os); void mangleThunk(const FunctionDecl *FD, 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 mangleCovariantThunk(const FunctionDecl *FD, int64_t nv_t, int64_t v_t, + 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); |