When doing "opt -O2" verify the bitcode like is done for

"opt -std-compile-opts".

llvm-svn: 146036
This commit is contained in:
Duncan Sands 2011-12-07 17:14:20 +00:00
parent 6b3cc1405f
commit b5e4020ddb

View File

@ -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;