[llvm-commits] [llvm] r55900 - /llvm/trunk/lib/Target/X86/X86TargetAsmInfo.cpp
Anton Korobeynikov
asl at math.spbu.ru
Mon Sep 8 07:22:16 PDT 2008
Author: asl
Date: Mon Sep 8 09:22:16 2008
New Revision: 55900
URL: http://llvm.org/viewvc/llvm-project?rev=55900&view=rev
Log:
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=55900&r1=55899&r2=55900&view=diff
==============================================================================
--- llvm/trunk/lib/Target/X86/X86TargetAsmInfo.cpp (original)
+++ llvm/trunk/lib/Target/X86/X86TargetAsmInfo.cpp Mon Sep 8 09:22:16 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