aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-04-11 15:57:04 +0000
committerDan Gohman <gohman@apple.com>2009-04-11 15:57:04 +0000
commita82ffb5c9866520ace26792d8d15094c3ea520e9 (patch)
tree54d7d4a5e71d87b13ed1ea8fcaccb415b31a2169 /include
parent962aaafe60b3a60b3bd5b97a82a48da0fe4d41b9 (diff)
downloadexternal_llvm-a82ffb5c9866520ace26792d8d15094c3ea520e9.zip
external_llvm-a82ffb5c9866520ace26792d8d15094c3ea520e9.tar.gz
external_llvm-a82ffb5c9866520ace26792d8d15094c3ea520e9.tar.bz2
Revert r68847. It breaks the build on non-Darwin targets, with this message
from the assembler: Error: unknown pseudo-op: `.debug_inlined' git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@68863 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/CodeGen/DwarfWriter.h7
-rw-r--r--include/llvm/Target/TargetAsmInfo.h9
2 files changed, 1 insertions, 15 deletions
diff --git a/include/llvm/CodeGen/DwarfWriter.h b/include/llvm/CodeGen/DwarfWriter.h
index e7d9266..8e82718 100644
--- a/include/llvm/CodeGen/DwarfWriter.h
+++ b/include/llvm/CodeGen/DwarfWriter.h
@@ -94,9 +94,6 @@ public:
/// RecordRegionStart - Indicate the start of a region.
unsigned RecordRegionStart(GlobalVariable *V);
- /// RecordRegionStart - Indicate the start of a region.
- unsigned RecordRegionStart(GlobalVariable *V, unsigned ID);
-
/// RecordRegionEnd - Indicate the end of a region.
unsigned RecordRegionEnd(GlobalVariable *V);
@@ -110,10 +107,6 @@ public:
/// ShouldEmitDwarfDebug - Returns true if Dwarf debugging declarations should
/// be emitted.
bool ShouldEmitDwarfDebug() const;
-
- //// RecordInlineInfo - Global variable GV is inlined at the location marked
- //// by LabelID label.
- void RecordInlineInfo(GlobalVariable *GV, unsigned LabelID);
};
diff --git a/include/llvm/Target/TargetAsmInfo.h b/include/llvm/Target/TargetAsmInfo.h
index 9f44596..b871009 100644
--- a/include/llvm/Target/TargetAsmInfo.h
+++ b/include/llvm/Target/TargetAsmInfo.h
@@ -506,11 +506,7 @@ namespace llvm {
/// DwarfPubTypesSection - Section directive for Dwarf info.
///
const char *DwarfPubTypesSection; // Defaults to ".debug_pubtypes".
-
- /// DwarfDebugInlineSection - Section directive for inline info.
- ///
- const char *DwarfDebugInlineSection; // Defaults to ".debug_inlined"
-
+
/// DwarfStrSection - Section directive for Dwarf info.
///
const char *DwarfStrSection; // Defaults to ".debug_str".
@@ -884,9 +880,6 @@ namespace llvm {
const char *getDwarfPubTypesSection() const {
return DwarfPubTypesSection;
}
- const char *getDwarfDebugInlineSection() const {
- return DwarfDebugInlineSection;
- }
const char *getDwarfStrSection() const {
return DwarfStrSection;
}