diff options
author | Anders Carlsson <andersca@mac.com> | 2010-01-01 20:29:01 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2010-01-01 20:29:01 +0000 |
commit | 3b5ad2283c999f6edf7d42332a655447b7386b2e (patch) | |
tree | 2583d7fead2731176b6e005b036c71c2f0fc4e88 /lib/CodeGen/CGVtable.cpp | |
parent | e3582011a63a78cdfa0917077ed87ccb9b3a87b5 (diff) |
Move a few more functions away from CGCXX and to CGClass and CGExprCXX.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@92399 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGVtable.cpp')
-rw-r--r-- | lib/CodeGen/CGVtable.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/CodeGen/CGVtable.cpp b/lib/CodeGen/CGVtable.cpp index 7930f7186d..98fb60a3de 100644 --- a/lib/CodeGen/CGVtable.cpp +++ b/lib/CodeGen/CGVtable.cpp @@ -161,7 +161,6 @@ private: llvm::DenseMap<CtorVtable_t, int64_t> &subAddressPoints; typedef CXXRecordDecl::method_iterator method_iter; - const bool Extern; const uint32_t LLVMPointerWidth; Index_t extra; typedef std::vector<std::pair<const CXXRecordDecl *, int64_t> > Path_t; @@ -199,7 +198,6 @@ public: rtti(0), VMContext(cgm.getModule().getContext()),CGM(cgm), PureVirtualFn(0), subAddressPoints(AllocAddressPoint(cgm, l, MostDerivedClass)), - Extern(!l->isInAnonymousNamespace()), LLVMPointerWidth(cgm.getContext().Target.getPointerWidth(0)) { Ptr8Ty = llvm::PointerType::get(llvm::Type::getInt8Ty(VMContext), 0); if (BuildVtable) { |