diff options
Diffstat (limited to 'include/llvm/CodeGen/ELFWriter.h')
-rw-r--r-- | include/llvm/CodeGen/ELFWriter.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/ELFWriter.h b/include/llvm/CodeGen/ELFWriter.h index 9211047f4a..3d3d448aa1 100644 --- a/include/llvm/CodeGen/ELFWriter.h +++ b/include/llvm/CodeGen/ELFWriter.h @@ -152,13 +152,16 @@ namespace llvm { /// getSection - Return the section with the specified name, creating a new /// section if one does not already exist. - ELFSection &getSection(const std::string &Name) { + ELFSection &getSection(const std::string &Name, + unsigned Type, unsigned Flags = 0) { ELFSection *&SN = SectionLookup[Name]; if (SN) return *SN; SectionList.push_back(Name); SN = &SectionList.back(); SN->SectionIdx = NumSections++; + SN->Type = Type; + SN->Flags = Flags; return *SN; } |