aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CGVtable.cpp
diff options
context:
space:
mode:
authorAnders Carlsson <andersca@mac.com>2009-12-03 02:34:59 +0000
committerAnders Carlsson <andersca@mac.com>2009-12-03 02:34:59 +0000
commit1345f4aa9c1d707305cc4f87e231d268b3edc2d2 (patch)
tree0745284800e573509669008fae8b67858f49b725 /lib/CodeGen/CGVtable.cpp
parent891bb4b6a51346838e15c4c381d782e800fb3390 (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.cpp9
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;
};