summaryrefslogtreecommitdiff
path: root/include/llvm/MC/MCAsmInfo.h
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2013-08-28 04:04:28 +0000
committerEric Christopher <echristo@gmail.com>2013-08-28 04:04:28 +0000
commit6b6345f0167fb9ddf60bdc51d616d7a9ae590442 (patch)
tree1fa5cfc66e7fd32070de6a795ea09e81e1200cd7 /include/llvm/MC/MCAsmInfo.h
parent5be1752dcd514a0f92c5c380194015b26f0bf0b3 (diff)
downloadllvm-6b6345f0167fb9ddf60bdc51d616d7a9ae590442.tar.gz
llvm-6b6345f0167fb9ddf60bdc51d616d7a9ae590442.tar.bz2
llvm-6b6345f0167fb9ddf60bdc51d616d7a9ae590442.tar.xz
Remove support for the .debug_inlined section. No known software
in use supports it. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@189439 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/MC/MCAsmInfo.h')
-rw-r--r--include/llvm/MC/MCAsmInfo.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/include/llvm/MC/MCAsmInfo.h b/include/llvm/MC/MCAsmInfo.h
index e83b624b31..186a8f657c 100644
--- a/include/llvm/MC/MCAsmInfo.h
+++ b/include/llvm/MC/MCAsmInfo.h
@@ -316,10 +316,6 @@ namespace llvm {
/// SupportsExceptionHandling - True if target supports exception handling.
ExceptionHandling::ExceptionsType ExceptionsType; // Defaults to None
- /// DwarfUsesInlineInfoSection - True if DwarfDebugInlineSection is used to
- /// encode inline subroutine information.
- bool DwarfUsesInlineInfoSection; // Defaults to false.
-
/// DwarfUsesRelocationsAcrossSections - True if Dwarf2 output generally
/// uses relocations for references to other .debug_* sections.
bool DwarfUsesRelocationsAcrossSections;
@@ -558,9 +554,6 @@ namespace llvm {
ExceptionsType == ExceptionHandling::ARM ||
ExceptionsType == ExceptionHandling::Win64);
}
- bool doesDwarfUseInlineInfoSection() const {
- return DwarfUsesInlineInfoSection;
- }
bool doesDwarfUseRelocationsAcrossSections() const {
return DwarfUsesRelocationsAcrossSections;
}