diff options
author | Tanya Lattner <tonic@nondot.org> | 2007-09-18 06:11:27 +0000 |
---|---|---|
committer | Tanya Lattner <tonic@nondot.org> | 2007-09-18 06:11:27 +0000 |
commit | fc9f915baa78e3b5ac379012f4844ccc9486beb3 (patch) | |
tree | 5422c0d02e43d83fe37644c5b1b696f0a5c1b24e | |
parent | 686d853616ea2643415884edf4be471df08d6190 (diff) |
Merge from mainline.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_21@42083 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/X86/X86AsmPrinter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/X86/X86AsmPrinter.cpp b/lib/Target/X86/X86AsmPrinter.cpp index 7049cf190b..85840495be 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(); |