summaryrefslogtreecommitdiffstats
path: root/lld/ELF/OutputSections.cpp
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2016-09-08 12:33:41 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2016-09-08 12:33:41 +0000
commit16853bb00f37f1093049be7d2996f3f0f077e64f (patch)
tree44083ad2ea1b7be9e8553d5034e629581922f9fc /lld/ELF/OutputSections.cpp
parent3c7f070956c7305656d0bd4a59317c09a5186941 (diff)
downloadbcm5719-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.cpp2
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;
OpenPOWER on IntegriCloud