aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/MC
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2012-11-30 06:47:06 +0000
committerEric Christopher <echristo@gmail.com>2012-11-30 06:47:06 +0000
commit67587f462e746e538322fbf7929b8db5de25ced7 (patch)
tree2112d6a046ab17726f411da411b4f692e6335bf0 /include/llvm/MC
parentb76c710aab3e2de60cb31422b18fb5d0e365e990 (diff)
downloadexternal_llvm-67587f462e746e538322fbf7929b8db5de25ced7.zip
external_llvm-67587f462e746e538322fbf7929b8db5de25ced7.tar.gz
external_llvm-67587f462e746e538322fbf7929b8db5de25ced7.tar.bz2
Add the rest of the experimental fission sections to MC.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@168986 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/MC')
-rw-r--r--include/llvm/MC/MCObjectFileInfo.h17
1 files changed, 16 insertions, 1 deletions
diff --git a/include/llvm/MC/MCObjectFileInfo.h b/include/llvm/MC/MCObjectFileInfo.h
index a682d60..dcde9d9 100644
--- a/include/llvm/MC/MCObjectFileInfo.h
+++ b/include/llvm/MC/MCObjectFileInfo.h
@@ -109,8 +109,11 @@ protected:
const MCSection *DwarfAccelTypesSection;
/// These are used for the Fission separate debug information files.
- /// DwarfInfoDWOSection
const MCSection *DwarfInfoDWOSection;
+ const MCSection *DwarfAbbrevDWOSection;
+ const MCSection *DwarfStrDWOSection;
+ const MCSection *DwarfLineDWOSection;
+ const MCSection *DwarfLocDWOSection;
// Extra TLS Variable Data section. If the target needs to put additional
// information for a TLS variable, it'll go here.
@@ -232,6 +235,18 @@ public:
const MCSection *getDwarfInfoDWOSection() const {
return DwarfInfoDWOSection;
}
+ const MCSection *getDwarfAbbrevDWOSection() const {
+ return DwarfAbbrevDWOSection;
+ }
+ const MCSection *getDwarfStrDWOSection() const {
+ return DwarfStrDWOSection;
+ }
+ const MCSection *getDwarfLineDWOSection() const {
+ return DwarfLineDWOSection;
+ }
+ const MCSection *getDwarfLocDWOSection() const {
+ return DwarfLocDWOSection;
+ }
const MCSection *getTLSExtraDataSection() const {
return TLSExtraDataSection;