forked from OSchip/llvm-project
When doing "opt -O2" verify the bitcode like is done for
"opt -std-compile-opts". llvm-svn: 146036
This commit is contained in:
parent
4d2b32ba51
commit
0f19e91a79
|
@ -407,6 +407,8 @@ static inline void addPass(PassManagerBase &PM, Pass *P) {
|
|||
/// OptLevel - Optimization Level
|
||||
static void AddOptimizationPasses(PassManagerBase &MPM,FunctionPassManager &FPM,
|
||||
unsigned OptLevel) {
|
||||
FPM.add(createVerifierPass()); // Verify that input is correct
|
||||
|
||||
PassManagerBuilder Builder;
|
||||
Builder.OptLevel = OptLevel;
|
||||
|
||||
|
|
Loading…
Reference in New Issue