X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;ds=sidebyside;f=include%2Fllvm%2FMC%2FMCObjectFileInfo.h;h=dcde9d9049e7a0b2bff3942bf5952682e10217d2;hb=b09c146b116359616f6cbd4c8b3328607e00ff42;hp=a682d609fb27c25024cb714aafe507c4fbaca5ac;hpb=6acb53152cd2140bc1f7ec7280bf67823e564ba0;p=oota-llvm.git diff --git a/include/llvm/MC/MCObjectFileInfo.h b/include/llvm/MC/MCObjectFileInfo.h index a682d609fb2..dcde9d9049e 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;