diff options
author | Eric Christopher <echristo@gmail.com> | 2013-01-04 17:59:22 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2013-01-04 17:59:22 +0000 |
commit | 60230ef987f234df88a166fc7878cf3051bca0a1 (patch) | |
tree | c5102113a86357f4da64e70748909e31f1311ba4 /include/llvm/MC/MCObjectFileInfo.h | |
parent | 138f084ca547c03d64b9a7acdbb84a01b8cd9111 (diff) |
Add section information for the DWARF5 split debug proposal
string offset section.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@171474 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/MC/MCObjectFileInfo.h')
-rw-r--r-- | include/llvm/MC/MCObjectFileInfo.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/llvm/MC/MCObjectFileInfo.h b/include/llvm/MC/MCObjectFileInfo.h index dcde9d9049..c8444fda2a 100644 --- a/include/llvm/MC/MCObjectFileInfo.h +++ b/include/llvm/MC/MCObjectFileInfo.h @@ -114,6 +114,7 @@ protected: const MCSection *DwarfStrDWOSection; const MCSection *DwarfLineDWOSection; const MCSection *DwarfLocDWOSection; + const MCSection *DwarfStrOffDWOSection; // Extra TLS Variable Data section. If the target needs to put additional // information for a TLS variable, it'll go here. @@ -247,6 +248,9 @@ public: const MCSection *getDwarfLocDWOSection() const { return DwarfLocDWOSection; } + const MCSection *getDwarfStrOffDWOSection() const { + return DwarfStrOffDWOSection; + } const MCSection *getTLSExtraDataSection() const { return TLSExtraDataSection; |