summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2008-07-01 23:34:48 +0000
committerBill Wendling <isanbard@gmail.com>2008-07-01 23:34:48 +0000
commitb7bd02be57122d33fddac15dae463fcd12a24cd1 (patch)
tree91eef651acfc7a09068b9bf88bae837f7e6d3960 /llvm/lib/Target
parent5f06a935a3e4a63305fdbe5202b9b25f1d3e7d7a (diff)
downloadbcm5719-llvm-b7bd02be57122d33fddac15dae463fcd12a24cd1.tar.gz
bcm5719-llvm-b7bd02be57122d33fddac15dae463fcd12a24cd1.zip
Darwin doesn't need exception handling information for the "move" info when
debug information is being output, because it's leet! llvm-svn: 52994
Diffstat (limited to 'llvm/lib/Target')
-rw-r--r--llvm/lib/Target/PowerPC/PPCTargetAsmInfo.cpp1
-rw-r--r--llvm/lib/Target/TargetAsmInfo.cpp1
-rw-r--r--llvm/lib/Target/X86/X86TargetAsmInfo.cpp1
3 files changed, 3 insertions, 0 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCTargetAsmInfo.cpp b/llvm/lib/Target/PowerPC/PPCTargetAsmInfo.cpp
index 058de655efa..00e1aabdd12 100644
--- a/llvm/lib/Target/PowerPC/PPCTargetAsmInfo.cpp
+++ b/llvm/lib/Target/PowerPC/PPCTargetAsmInfo.cpp
@@ -66,6 +66,7 @@ DarwinTargetAsmInfo::DarwinTargetAsmInfo(const PPCTargetMachine &TM)
DwarfEHFrameSection =
".section __TEXT,__eh_frame,coalesced,no_toc+strip_static_syms+live_support";
DwarfExceptionSection = ".section __DATA,__gcc_except_tab";
+ DebugInfoRequireFrameMoveInfo = false;
GlobalEHDirective = "\t.globl\t";
SupportsWeakOmittedEHFrame = false;
diff --git a/llvm/lib/Target/TargetAsmInfo.cpp b/llvm/lib/Target/TargetAsmInfo.cpp
index 2adad3d7baa..8caff91e602 100644
--- a/llvm/lib/Target/TargetAsmInfo.cpp
+++ b/llvm/lib/Target/TargetAsmInfo.cpp
@@ -111,6 +111,7 @@ TargetAsmInfo::TargetAsmInfo() :
DwarfMacInfoSection(".debug_macinfo"),
DwarfEHFrameSection(".eh_frame"),
DwarfExceptionSection(".gcc_except_table"),
+ DebugInfoRequireFrameMoveInfo(true),
AsmTransCBE(0) {
}
diff --git a/llvm/lib/Target/X86/X86TargetAsmInfo.cpp b/llvm/lib/Target/X86/X86TargetAsmInfo.cpp
index 887c13dcc76..d0b3b818f1e 100644
--- a/llvm/lib/Target/X86/X86TargetAsmInfo.cpp
+++ b/llvm/lib/Target/X86/X86TargetAsmInfo.cpp
@@ -124,6 +124,7 @@ X86TargetAsmInfo::X86TargetAsmInfo(const X86TargetMachine &TM) {
DwarfEHFrameSection =
".section __TEXT,__eh_frame,coalesced,no_toc+strip_static_syms+live_support";
DwarfExceptionSection = ".section __DATA,__gcc_except_tab";
+ DebugInfoRequireFrameMoveInfo = false;
break;
case X86Subtarget::isELF:
OpenPOWER on IntegriCloud