mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-13 06:39:12 +00:00
Enable exception handling if it is supported.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@46560 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
f38dc192dd
commit
21b70b237d
@ -31,6 +31,7 @@
|
||||
#include "llvm/Analysis/Verifier.h"
|
||||
#include "llvm/CodeGen/FileWriters.h"
|
||||
#include "llvm/Target/SubtargetFeature.h"
|
||||
#include "llvm/Target/TargetOptions.h"
|
||||
#include "llvm/Target/TargetData.h"
|
||||
#include "llvm/Target/TargetMachine.h"
|
||||
#include "llvm/Target/TargetMachineRegistry.h"
|
||||
@ -266,7 +267,11 @@ LTO::optimize(Module *M, std::ostream &Out,
|
||||
|
||||
if (!Target)
|
||||
return LTO_NO_TARGET;
|
||||
|
||||
|
||||
// If target supports exception handling then enable it now.
|
||||
if (Target->getTargetAsmInfo()->doesSupportExceptionHandling())
|
||||
ExceptionHandling = true;
|
||||
|
||||
// Start off with a verification pass.
|
||||
Passes.add(createVerifierPass());
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user