diff options
Diffstat (limited to 'contrib/llvm/lib/Object/ELFYAML.cpp')
| -rw-r--r-- | contrib/llvm/lib/Object/ELFYAML.cpp | 10 | 
1 files changed, 10 insertions, 0 deletions
diff --git a/contrib/llvm/lib/Object/ELFYAML.cpp b/contrib/llvm/lib/Object/ELFYAML.cpp index ecdd468305be..72c232c32870 100644 --- a/contrib/llvm/lib/Object/ELFYAML.cpp +++ b/contrib/llvm/lib/Object/ELFYAML.cpp @@ -627,6 +627,11 @@ static void sectionMapping(IO &IO, ELFYAML::RawContentSection &Section) {    IO.mapOptional("Size", Section.Size, Hex64(Section.Content.binary_size()));  } +static void sectionMapping(IO &IO, ELFYAML::NoBitsSection &Section) { +  commonSectionMapping(IO, Section); +  IO.mapOptional("Size", Section.Size, Hex64(0)); +} +  static void sectionMapping(IO &IO, ELFYAML::RelocationSection &Section) {    commonSectionMapping(IO, Section);    IO.mapOptional("Relocations", Section.Relocations); @@ -682,6 +687,11 @@ void MappingTraits<std::unique_ptr<ELFYAML::Section>>::mapping(        Section.reset(new ELFYAML::Group());      groupSectionMapping(IO, *cast<ELFYAML::Group>(Section.get()));      break; +  case ELF::SHT_NOBITS: +    if (!IO.outputting()) +      Section.reset(new ELFYAML::NoBitsSection()); +    sectionMapping(IO, *cast<ELFYAML::NoBitsSection>(Section.get())); +    break;    case ELF::SHT_MIPS_ABIFLAGS:      if (!IO.outputting())        Section.reset(new ELFYAML::MipsABIFlags());  | 
