[llvm-commits] [llvm] r55956 - /llvm/trunk/lib/Target/X86/X86TargetAsmInfo.cpp
Anton Korobeynikov
asl at math.spbu.ru
Mon Sep 8 14:13:08 PDT 2008
Author: asl
Date: Mon Sep 8 16:13:08 2008
New Revision: 55956
URL: http://llvm.org/viewvc/llvm-project?rev=55956&view=rev
Log:
Reapply 55900: We do support EH on x86-64!
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=55956&r1=55955&r2=55956&view=diff
==============================================================================
--- llvm/trunk/lib/Target/X86/X86TargetAsmInfo.cpp (original)
+++ llvm/trunk/lib/Target/X86/X86TargetAsmInfo.cpp Mon Sep 8 16:13:08 2008
@@ -261,8 +261,7 @@
DwarfMacInfoSection = "\t.section\t.debug_macinfo,\"\", at progbits";
// Exceptions handling
- if (!is64Bit)
- SupportsExceptionHandling = true;
+ SupportsExceptionHandling = true;
AbsoluteEHSectionOffsets = false;
DwarfEHFrameSection = "\t.section\t.eh_frame,\"aw\", at progbits";
DwarfExceptionSection = "\t.section\t.gcc_except_table,\"a\", at progbits";
More information about the llvm-commits
mailing list