summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoman Divacky <rdivacky@freebsd.org>2012-09-12 15:29:32 +0000
committerRoman Divacky <rdivacky@freebsd.org>2012-09-12 15:29:32 +0000
commitba9d069d797fbe204470c18a5f15e7f3cf763e0b (patch)
treefcdca90290b18fd38cca82ba8a3f3fcd08ca7666
parentdb9ba339b118d89f082c3f7b415ec86405d0258e (diff)
downloadllvm-ba9d069d797fbe204470c18a5f15e7f3cf763e0b.tar.gz
llvm-ba9d069d797fbe204470c18a5f15e7f3cf763e0b.tar.bz2
llvm-ba9d069d797fbe204470c18a5f15e7f3cf763e0b.tar.xz
Enable exceptions handling on PPC64 now that cr misaligned spilling
was fixed in r163713. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163715 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.cpp b/lib/Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.cpp
index b9ea8b5562..215aa40c4a 100644
--- a/lib/Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.cpp
+++ b/lib/Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.cpp
@@ -59,8 +59,7 @@ PPCLinuxMCAsmInfo::PPCLinuxMCAsmInfo(bool is64Bit) {
HasLEB128 = true; // Target asm supports leb128 directives (little-endian)
// Exceptions handling
- if (!is64Bit)
- ExceptionsType = ExceptionHandling::DwarfCFI;
+ ExceptionsType = ExceptionHandling::DwarfCFI;
ZeroDirective = "\t.space\t";
Data64bitsDirective = is64Bit ? "\t.quad\t" : 0;