[llvm-commits] [llvm] r75491 - /llvm/trunk/lib/Target/X86/X86TargetAsmInfo.cpp
Bill Wendling
isanbard at gmail.com
Mon Jul 13 13:27:42 PDT 2009
Author: void
Date: Mon Jul 13 15:27:41 2009
New Revision: 75491
URL: http://llvm.org/viewvc/llvm-project?rev=75491&view=rev
Log:
Reverted r75484. It was causing a failure with Apple-style builds.
Modified:
llvm/trunk/lib/Target/X86/X86TargetAsmInfo.cpp
Modified: llvm/trunk/lib/Target/X86/X86TargetAsmInfo.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/X86/X86TargetAsmInfo.cpp?rev=75491&r1=75490&r2=75491&view=diff
==============================================================================
--- llvm/trunk/lib/Target/X86/X86TargetAsmInfo.cpp (original)
+++ llvm/trunk/lib/Target/X86/X86TargetAsmInfo.cpp Mon Jul 13 15:27:41 2009
@@ -93,13 +93,7 @@
AbsoluteEHSectionOffsets = false;
DwarfEHFrameSection =
".section __TEXT,__eh_frame,coalesced,no_toc+strip_static_syms+live_support";
-
- // Leopard and earlier put exception tables in __DATA. Greater than Leopard
- // put them in __TEXT.
- if (Subtarget->getDarwinVers() > 9)
- DwarfExceptionSection = ".section __TEXT,__gcc_except_tab";
- else
- DwarfExceptionSection = ".section __DATA,__gcc_except_tab";
+ DwarfExceptionSection = ".section __DATA,__gcc_except_tab";
}
unsigned
More information about the llvm-commits
mailing list