mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-11-23 00:20:25 +00:00
Replace r168930 with a more reasonable patch.
The original patch removed a bunch of code that the SjLjEHPrepare pass placed into the entry block if all of the landing pads were removed during the CodeGenPrepare class. The more natural way of doing things is to run the CGP *before* we run the SjLjEHPrepare pass. Make it so! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@169044 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -400,12 +400,16 @@ void TargetPassConfig::addPassesToHandleExceptions() {
|
||||
}
|
||||
}
|
||||
|
||||
/// Add pass to prepare the LLVM IR for code generation. This should be done
|
||||
/// before exception handling preparation passes.
|
||||
void TargetPassConfig::addCodeGenPrepare() {
|
||||
if (getOptLevel() != CodeGenOpt::None && !DisableCGP)
|
||||
addPass(createCodeGenPreparePass(getTargetLowering()));
|
||||
}
|
||||
|
||||
/// Add common passes that perform LLVM IR to IR transforms in preparation for
|
||||
/// instruction selection.
|
||||
void TargetPassConfig::addISelPrepare() {
|
||||
if (getOptLevel() != CodeGenOpt::None && !DisableCGP)
|
||||
addPass(createCodeGenPreparePass(getTargetLowering()));
|
||||
|
||||
addPass(createStackProtectorPass(getTargetLowering()));
|
||||
|
||||
addPreISel();
|
||||
|
||||
Reference in New Issue
Block a user