diff options
author | Mike Stump <mrs@apple.com> | 2009-09-05 07:20:32 +0000 |
---|---|---|
committer | Mike Stump <mrs@apple.com> | 2009-09-05 07:20:32 +0000 |
commit | 77ca8f6c5e666ef873066b580bf1b7fabd41d4f5 (patch) | |
tree | 5d9c95a692f43dc75ac61effc68a4f81b8cf6acf /lib/CodeGen/CodeGenModule.h | |
parent | aeba28405dde0a7a0d0c49c1897e3b1ce0139f41 (diff) |
Install thunks later to fixup overrides. Track space taken by vbase
offsets better for thunk refinements. Cleanups. WIP.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@81067 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenModule.h')
-rw-r--r-- | lib/CodeGen/CodeGenModule.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/CodeGenModule.h b/lib/CodeGen/CodeGenModule.h index 2368a082cb..2aa97de2b0 100644 --- a/lib/CodeGen/CodeGenModule.h +++ b/lib/CodeGen/CodeGenModule.h @@ -236,8 +236,8 @@ public: llvm::Constant *GenerateRtti(const CXXRecordDecl *RD); /// BuildThunk - Build a thunk for the given method - llvm::Constant *BuildThunk(const CXXMethodDecl *MD, bool Extern, bool Virtual, - int64_t nv, int64_t v); + llvm::Constant *BuildThunk(const CXXMethodDecl *MD, bool Extern, int64_t nv, + int64_t v); /// GetStringForStringLiteral - Return the appropriate bytes for a string /// literal, properly padded to match the literal type. If only the address of |