aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2007-09-16 19:21:08 +0000
committerBill Wendling <isanbard@gmail.com>2007-09-16 19:21:08 +0000
commitbd626b885f92a2f4a583e4c1710be8cc543962c1 (patch)
tree0fb653c51d31a9194cf2dc92a0571f2180850184 /lib/Target
parent118cd9dbbad3a47f37dc1b1529ef920e4d5e13f6 (diff)
downloadexternal_llvm-bd626b885f92a2f4a583e4c1710be8cc543962c1.zip
external_llvm-bd626b885f92a2f4a583e4c1710be8cc543962c1.tar.gz
external_llvm-bd626b885f92a2f4a583e4c1710be8cc543962c1.tar.bz2
Follow-up to patch r41999. Make the conditional that emits the personality stub
match the conditional that turns on exception handling emittion in the asm printer. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42008 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target')
-rw-r--r--lib/Target/X86/X86AsmPrinter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/X86/X86AsmPrinter.cpp b/lib/Target/X86/X86AsmPrinter.cpp
index 7049cf1..8584049 100644
--- a/lib/Target/X86/X86AsmPrinter.cpp
+++ b/lib/Target/X86/X86AsmPrinter.cpp
@@ -352,7 +352,7 @@ bool X86SharedAsmPrinter::doFinalization(Module &M) {
O << "\n";
- if (TAI->doesSupportExceptionHandling() && MMI) {
+ if (ExceptionHandling && TAI->doesSupportExceptionHandling() && MMI) {
// Add the (possibly multiple) personalities to the set of global values.
const std::vector<Function *>& Personalities = MMI->getPersonalities();