diff options
| author | Rui Ueyama <ruiu@google.com> | 2017-09-13 21:54:55 +0000 |
|---|---|---|
| committer | Rui Ueyama <ruiu@google.com> | 2017-09-13 21:54:55 +0000 |
| commit | cfc2f80df6afac6d7d033a145911f2adebb22464 (patch) | |
| tree | 44f0cf60d076af6c58c642b0cb6d0d9918678d73 /lld/COFF/DLL.cpp | |
| parent | 89af112cf590e76fbb1fd964086a3882b7f935f9 (diff) | |
| download | bcm5719-llvm-cfc2f80df6afac6d7d033a145911f2adebb22464.tar.gz bcm5719-llvm-cfc2f80df6afac6d7d033a145911f2adebb22464.zip | |
Remove {get,set}Align accessor functions and use Alignment member variable instead.
llvm-svn: 313204
Diffstat (limited to 'lld/COFF/DLL.cpp')
| -rw-r--r-- | lld/COFF/DLL.cpp | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/lld/COFF/DLL.cpp b/lld/COFF/DLL.cpp index 168590f9a23..847d15d8594 100644 --- a/lld/COFF/DLL.cpp +++ b/lld/COFF/DLL.cpp @@ -61,7 +61,7 @@ private: // A chunk for the import descriptor table. class LookupChunk : public Chunk { public: - explicit LookupChunk(Chunk *C) : HintName(C) { Align = ptrSize(); } + explicit LookupChunk(Chunk *C) : HintName(C) { Alignment = ptrSize(); } size_t getSize() const override { return ptrSize(); } void writeTo(uint8_t *Buf) const override { @@ -76,7 +76,7 @@ public: // See Microsoft PE/COFF spec 7.1. Import Header for details. class OrdinalOnlyChunk : public Chunk { public: - explicit OrdinalOnlyChunk(uint16_t V) : Ordinal(V) { Align = ptrSize(); } + explicit OrdinalOnlyChunk(uint16_t V) : Ordinal(V) { Alignment = ptrSize(); } size_t getSize() const override { return ptrSize(); } void writeTo(uint8_t *Buf) const override { @@ -117,7 +117,6 @@ public: explicit NullChunk(size_t N) : Size(N) {} bool hasData() const override { return false; } size_t getSize() const override { return Size; } - void setAlign(size_t N) { Align = N; } private: size_t Size; @@ -302,7 +301,7 @@ public: // A chunk for the import descriptor table. class DelayAddressChunk : public Chunk { public: - explicit DelayAddressChunk(Chunk *C) : Thunk(C) { Align = ptrSize(); } + explicit DelayAddressChunk(Chunk *C) : Thunk(C) { Alignment = ptrSize(); } size_t getSize() const override { return ptrSize(); } void writeTo(uint8_t *Buf) const override { @@ -535,7 +534,7 @@ void DelayLoadContents::create(Defined *H) { for (int I = 0, E = Syms.size(); I < E; ++I) Syms[I]->setLocation(Addresses[Base + I]); auto *MH = make<NullChunk>(8); - MH->setAlign(8); + MH->Alignment = 8; ModuleHandles.push_back(MH); // Fill the delay import table header fields. |

