diff options
author | Eric Christopher <echristo@gmail.com> | 2012-11-28 02:49:38 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2012-11-28 02:49:38 +0000 |
commit | 6acb53152cd2140bc1f7ec7280bf67823e564ba0 (patch) | |
tree | 4c1c947b3dd7becca2f23fdd3f3a4fb1774dc91e /include | |
parent | ea1504d0bd2f1171890b090b2ce007a78a05029f (diff) | |
download | external_llvm-6acb53152cd2140bc1f7ec7280bf67823e564ba0.zip external_llvm-6acb53152cd2140bc1f7ec7280bf67823e564ba0.tar.gz external_llvm-6acb53152cd2140bc1f7ec7280bf67823e564ba0.tar.bz2 |
Add brief support for the fission .debug_info.dwo section for
ELF output.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@168764 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/MC/MCObjectFileInfo.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/llvm/MC/MCObjectFileInfo.h b/include/llvm/MC/MCObjectFileInfo.h index f097c9d..a682d60 100644 --- a/include/llvm/MC/MCObjectFileInfo.h +++ b/include/llvm/MC/MCObjectFileInfo.h @@ -108,6 +108,10 @@ protected: const MCSection *DwarfAccelNamespaceSection; const MCSection *DwarfAccelTypesSection; + /// These are used for the Fission separate debug information files. + /// DwarfInfoDWOSection + const MCSection *DwarfInfoDWOSection; + // Extra TLS Variable Data section. If the target needs to put additional // information for a TLS variable, it'll go here. const MCSection *TLSExtraDataSection; @@ -225,6 +229,9 @@ public: const MCSection *getDwarfAccelTypesSection() const { return DwarfAccelTypesSection; } + const MCSection *getDwarfInfoDWOSection() const { + return DwarfInfoDWOSection; + } const MCSection *getTLSExtraDataSection() const { return TLSExtraDataSection; |