diff options
author | Bill Wendling <isanbard@gmail.com> | 2009-08-20 22:04:42 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2009-08-20 22:04:42 +0000 |
commit | 90855adf7d37bf913270c55c5e090640c8ae7beb (patch) | |
tree | 540663c72d57aae9b53822ebbf1273b56ce141c7 /include/llvm | |
parent | 16f275c399a2ed9334e241984515e0ed9fd17334 (diff) | |
download | external_llvm-90855adf7d37bf913270c55c5e090640c8ae7beb.zip external_llvm-90855adf7d37bf913270c55c5e090640c8ae7beb.tar.gz external_llvm-90855adf7d37bf913270c55c5e090640c8ae7beb.tar.bz2 |
--- Reverse-merging r79555 into '.':
U include/llvm/Target/TargetData.h
U lib/Target/TargetData.cpp
Temporarily revert 79555. It was causing hangs and test failures.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79568 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r-- | include/llvm/Target/TargetData.h | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/include/llvm/Target/TargetData.h b/include/llvm/Target/TargetData.h index b0ea291..23775be 100644 --- a/include/llvm/Target/TargetData.h +++ b/include/llvm/Target/TargetData.h @@ -91,9 +91,6 @@ private: */ static const TargetAlignElem InvalidAlignmentElem; - /// Opaque pointer for the StructType -> StructLayout map - void* LayoutMap; - //! Set/initialize target alignments void setAlignment(AlignTypeEnum align_type, unsigned char abi_align, unsigned char pref_align, uint32_t bit_width); @@ -110,9 +107,6 @@ private: return (&align != &InvalidAlignmentElem); } - // DO NOT IMPLEMENT - void operator=(const TargetData&); - public: /// Default ctor. /// @@ -124,11 +118,22 @@ public: } /// Constructs a TargetData from a specification string. See init(). - explicit TargetData(const std::string &TargetDescription); + explicit TargetData(const std::string &TargetDescription) + : ImmutablePass(&ID) { + init(TargetDescription); + } /// Initialize target data from properties stored in the module. explicit TargetData(const Module *M); - TargetData(const TargetData &TD); + + TargetData(const TargetData &TD) : + ImmutablePass(&ID), + LittleEndian(TD.isLittleEndian()), + PointerMemSize(TD.PointerMemSize), + PointerABIAlign(TD.PointerABIAlign), + PointerPrefAlign(TD.PointerPrefAlign), + Alignments(TD.Alignments) + { } ~TargetData(); // Not virtual, do not subclass this class |