diff options
| author | Chris Lattner <sabre@nondot.org> | 2009-06-18 23:31:37 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2009-06-18 23:31:37 +0000 |
| commit | b839c3f577e03467bce8904eb2a02b124ec19ec8 (patch) | |
| tree | 03f8a615f41b68610ad7f0fdb223205f3bf7c1ea /include/llvm/Target | |
| parent | cd828618b8c6ec58df94aec0f5546f009f2fd0d5 (diff) | |
| download | external_llvm-b839c3f577e03467bce8904eb2a02b124ec19ec8.zip external_llvm-b839c3f577e03467bce8904eb2a02b124ec19ec8.tar.gz external_llvm-b839c3f577e03467bce8904eb2a02b124ec19ec8.tar.bz2 | |
simplify macro debug info directive handling.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73736 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Target')
| -rw-r--r-- | include/llvm/Target/TargetAsmInfo.h | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/include/llvm/Target/TargetAsmInfo.h b/include/llvm/Target/TargetAsmInfo.h index f223f47..d71f4dd 100644 --- a/include/llvm/Target/TargetAsmInfo.h +++ b/include/llvm/Target/TargetAsmInfo.h @@ -472,10 +472,6 @@ namespace llvm { /// encode inline subroutine information. bool DwarfUsesInlineInfoSection; // Defaults to false. - /// SupportsMacInfo - true if the Dwarf output supports macro information - /// - bool SupportsMacInfoSection; // Defaults to true - /// NonLocalEHFrameLabel - If set, the EH_frame label needs to be non-local. /// bool NonLocalEHFrameLabel; // Defaults to false. @@ -536,9 +532,9 @@ namespace llvm { /// const char *DwarfRangesSection; // Defaults to ".debug_ranges". - /// DwarfMacInfoSection - Section directive for Dwarf info. + /// DwarfMacroInfoSection - Section directive for DWARF macro info. /// - const char *DwarfMacInfoSection; // Defaults to ".debug_macinfo". + const char *DwarfMacroInfoSection; // Defaults to ".debug_macinfo". /// DwarfEHFrameSection - Section directive for Exception frames. /// @@ -866,9 +862,6 @@ namespace llvm { bool doesDwarfUsesInlineInfoSection() const { return DwarfUsesInlineInfoSection; } - bool doesSupportMacInfoSection() const { - return SupportsMacInfoSection; - } bool doesRequireNonLocalEHFrameLabel() const { return NonLocalEHFrameLabel; } @@ -914,8 +907,8 @@ namespace llvm { const char *getDwarfRangesSection() const { return DwarfRangesSection; } - const char *getDwarfMacInfoSection() const { - return DwarfMacInfoSection; + const char *getDwarfMacroInfoSection() const { + return DwarfMacroInfoSection; } const char *getDwarfEHFrameSection() const { return DwarfEHFrameSection; |
