aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Target/TargetAsmInfo.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/include/llvm/Target/TargetAsmInfo.h b/include/llvm/Target/TargetAsmInfo.h
index 2fb2a68b36..aada8ff937 100644
--- a/include/llvm/Target/TargetAsmInfo.h
+++ b/include/llvm/Target/TargetAsmInfo.h
@@ -412,7 +412,11 @@ namespace llvm {
/// DwarfExceptionSection - Section directive for Exception table.
///
const char *DwarfExceptionSection; // Defaults to ".gcc_except_table".
-
+
+ /// DebugInfoRequireFrameMoveInfo - Does debugging info require frame move
+ /// info.
+ ///
+ bool DebugInfoRequireFrameMoveInfo; // Defaults to "true"
//===--- CBE Asm Translation Table -----------------------------------===//
@@ -699,6 +703,9 @@ namespace llvm {
const char *getDwarfExceptionSection() const {
return DwarfExceptionSection;
}
+ bool doesDebugInfoRequireFrameMoveInfo() const {
+ return DebugInfoRequireFrameMoveInfo;
+ }
const char *const *getAsmCBE() const {
return AsmTransCBE;
}