diff options
author | Reid Kleckner <reid@kleckner.net> | 2015-01-23 18:49:01 +0000 |
---|---|---|
committer | Reid Kleckner <reid@kleckner.net> | 2015-01-23 18:49:01 +0000 |
commit | 5cc1569c548048e5427ef2c5c82de4a787c2a397 (patch) | |
tree | 1e04addd27f71eba672ba56a85dad8702fc710be /llvm/lib/CodeGen/AsmPrinter/Win64Exception.cpp | |
parent | 577feba44b9552a1b68ba52e3bf36b3054b6dae7 (diff) | |
download | bcm5719-llvm-5cc1569c548048e5427ef2c5c82de4a787c2a397.tar.gz bcm5719-llvm-5cc1569c548048e5427ef2c5c82de4a787c2a397.zip |
Classify functions by EH personality type rather than using the triple
This mostly reverts commit r222062 and replaces it with a new enum. At
some point this enum will grow at least for other MSVC EH personalities.
Also beefs up the way we were sniffing the personality function.
Previously we would emit the Itanium LSDA despite using
__C_specific_handler.
Reviewers: majnemer
Differential Revision: http://reviews.llvm.org/D6987
llvm-svn: 226920
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/Win64Exception.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/Win64Exception.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/Win64Exception.cpp b/llvm/lib/CodeGen/AsmPrinter/Win64Exception.cpp index 73278c835bc..a1719a51889 100644 --- a/llvm/lib/CodeGen/AsmPrinter/Win64Exception.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/Win64Exception.cpp @@ -105,8 +105,8 @@ void Win64Exception::endFunction(const MachineFunction *) { // Emit the tables appropriate to the personality function in use. If we // don't recognize the personality, assume it uses an Itanium-style LSDA. - const Function *Per = MMI->getPersonality(); - if (Per && Per->getName() == "__C_specific_handler") + EHPersonality Per = MMI->getPersonalityType(); + if (Per == EHPersonality::Win64SEH) emitCSpecificHandlerTable(); else emitExceptionTable(); |