diff options
Diffstat (limited to 'lld/lib/ReaderWriter/CoreLinkingContext.cpp')
-rw-r--r-- | lld/lib/ReaderWriter/CoreLinkingContext.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lld/lib/ReaderWriter/CoreLinkingContext.cpp b/lld/lib/ReaderWriter/CoreLinkingContext.cpp index 86fad4f6e77..316f858844a 100644 --- a/lld/lib/ReaderWriter/CoreLinkingContext.cpp +++ b/lld/lib/ReaderWriter/CoreLinkingContext.cpp @@ -43,7 +43,7 @@ public: ContentType contentType() const override { return DefinedAtom::typeStub; } - Alignment alignment() const override { return Alignment(0, 0); } + Alignment alignment() const override { return 1; } SectionChoice sectionChoice() const override { return DefinedAtom::sectionBasedOnContent; @@ -104,7 +104,7 @@ public: ContentType contentType() const override { return DefinedAtom::typeGOT; } - Alignment alignment() const override { return Alignment(3, 0); } + Alignment alignment() const override { return 8; } SectionChoice sectionChoice() const override { return DefinedAtom::sectionBasedOnContent; |