diff options
author | Bill Wendling <isanbard@gmail.com> | 2008-07-01 23:34:48 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2008-07-01 23:34:48 +0000 |
commit | aa8f8889a861aadc061aec71fb7ed7f628848a2d (patch) | |
tree | 311af25e30747a4defe06d624952d2c40aa40bfb /include/llvm/Target | |
parent | 6547e406cf934346db7a206b61bcf09635afff0d (diff) | |
download | external_llvm-aa8f8889a861aadc061aec71fb7ed7f628848a2d.tar.gz external_llvm-aa8f8889a861aadc061aec71fb7ed7f628848a2d.tar.bz2 external_llvm-aa8f8889a861aadc061aec71fb7ed7f628848a2d.zip |
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
Diffstat (limited to 'include/llvm/Target')
-rw-r--r-- | include/llvm/Target/TargetAsmInfo.h | 9 |
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; } |