From aa8f8889a861aadc061aec71fb7ed7f628848a2d Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Tue, 1 Jul 2008 23:34:48 +0000 Subject: Darwin doesn't need exception handling information for the "move" info when debug information is being output, because it's leet! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52994 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Target/TargetAsmInfo.h | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'include/llvm/Target/TargetAsmInfo.h') 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; } -- cgit v1.2.3