diff options
author | Anton Korobeynikov <asl@math.spbu.ru> | 2008-09-08 21:13:08 +0000 |
---|---|---|
committer | Anton Korobeynikov <asl@math.spbu.ru> | 2008-09-08 21:13:08 +0000 |
commit | 524820fef789aa8532f5199488f32633d8573e8c (patch) | |
tree | a6caae194b8ac7c4da9734bb2d0bf652c9444e84 /llvm/lib | |
parent | 2fd24e77133df8e7b05d96817c7751abcce316f5 (diff) | |
download | bcm5719-llvm-524820fef789aa8532f5199488f32633d8573e8c.tar.gz bcm5719-llvm-524820fef789aa8532f5199488f32633d8573e8c.zip |
Reapply 55900: We do support EH on x86-64!
llvm-svn: 55956
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Target/X86/X86TargetAsmInfo.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/Target/X86/X86TargetAsmInfo.cpp b/llvm/lib/Target/X86/X86TargetAsmInfo.cpp index 178aec0d57b..1ecf6a99187 100644 --- a/llvm/lib/Target/X86/X86TargetAsmInfo.cpp +++ b/llvm/lib/Target/X86/X86TargetAsmInfo.cpp @@ -261,8 +261,7 @@ X86ELFTargetAsmInfo::X86ELFTargetAsmInfo(const X86TargetMachine &TM): DwarfMacInfoSection = "\t.section\t.debug_macinfo,\"\",@progbits"; // Exceptions handling - if (!is64Bit) - SupportsExceptionHandling = true; + SupportsExceptionHandling = true; AbsoluteEHSectionOffsets = false; DwarfEHFrameSection = "\t.section\t.eh_frame,\"aw\",@progbits"; DwarfExceptionSection = "\t.section\t.gcc_except_table,\"a\",@progbits"; |