diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2016-09-08 12:33:41 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2016-09-08 12:33:41 +0000 |
commit | 16853bb00f37f1093049be7d2996f3f0f077e64f (patch) | |
tree | 44083ad2ea1b7be9e8553d5034e629581922f9fc /lld/ELF/OutputSections.cpp | |
parent | 3c7f070956c7305656d0bd4a59317c09a5186941 (diff) | |
download | bcm5719-llvm-16853bb00f37f1093049be7d2996f3f0f077e64f.tar.gz bcm5719-llvm-16853bb00f37f1093049be7d2996f3f0f077e64f.zip |
Pack InputSectionData from 72 to 64 bytes. NFC.
llvm-svn: 280925
Diffstat (limited to 'lld/ELF/OutputSections.cpp')
-rw-r--r-- | lld/ELF/OutputSections.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/ELF/OutputSections.cpp b/lld/ELF/OutputSections.cpp index 278e5c586e5..4eda44549d9 100644 --- a/lld/ELF/OutputSections.cpp +++ b/lld/ELF/OutputSections.cpp @@ -1836,7 +1836,7 @@ OutputSectionFactory<ELFT>::create(InputSectionBase<ELFT> *C, if (Sec) return {Sec, false}; - switch (C->SectionKind) { + switch (C->kind()) { case InputSectionBase<ELFT>::Regular: Sec = new OutputSection<ELFT>(Key.Name, Key.Type, Key.Flags); break; |