diff options
author | Anders Carlsson <andersca@mac.com> | 2009-12-03 02:34:59 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2009-12-03 02:34:59 +0000 |
commit | 1345f4aa9c1d707305cc4f87e231d268b3edc2d2 (patch) | |
tree | 0745284800e573509669008fae8b67858f49b725 /lib/CodeGen/CGVtable.cpp | |
parent | 891bb4b6a51346838e15c4c381d782e800fb3390 (diff) |
Remove unused struct fields.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@90397 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGVtable.cpp')
-rw-r--r-- | lib/CodeGen/CGVtable.cpp | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/lib/CodeGen/CGVtable.cpp b/lib/CodeGen/CGVtable.cpp index edcd14c96e..e6b63836f8 100644 --- a/lib/CodeGen/CGVtable.cpp +++ b/lib/CodeGen/CGVtable.cpp @@ -80,16 +80,11 @@ private: struct CovariantThunk { CovariantThunk() { } - CovariantThunk(GlobalDecl GD, const ThunkAdjustment &ReturnAdjustment, - CanQualType ReturnType) - : GD(GD), ReturnAdjustment(ReturnAdjustment), - ReturnType(ReturnType) { } + CovariantThunk(GlobalDecl GD, CanQualType ReturnType) + : GD(GD), ReturnType(ReturnType) { } GlobalDecl GD; - /// ReturnAdjustment - The covariant thunk return adjustment. - ThunkAdjustment ReturnAdjustment; - /// ReturnType - The return type of the function. CanQualType ReturnType; }; |