From 5f9cb59f057df378e0ce3f93adbdfef1d2324a43 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sat, 16 Jul 2005 17:35:26 +0000 Subject: [PATCH] Add ability to set TYPE and FLAGS field for section trivially git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22454 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/CodeGen/ELFWriter.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/include/llvm/CodeGen/ELFWriter.h b/include/llvm/CodeGen/ELFWriter.h index 9211047f4af..3d3d448aa12 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; }