From: Bill Wendling Date: Sun, 16 Sep 2007 19:21:08 +0000 (+0000) Subject: Follow-up to patch r41999. Make the conditional that emits the personality stub X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=bd626b885f92a2f4a583e4c1710be8cc543962c1;p=oota-llvm.git 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 --- diff --git a/lib/Target/X86/X86AsmPrinter.cpp b/lib/Target/X86/X86AsmPrinter.cpp index 7049cf190ba..85840495bed 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& Personalities = MMI->getPersonalities();