1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00

Enable verifier after PeepholeOptimizer

No tests fail with this enabled so I assume it was an accident
that it isn't enabled now.

llvm-svn: 250070
This commit is contained in:
Matt Arsenault 2015-10-12 17:43:56 +00:00
parent e553907fca
commit 2f5c4b1b03

View File

@ -633,7 +633,7 @@ void TargetPassConfig::addMachineSSAOptimization() {
addPass(&MachineCSEID, false);
addPass(&MachineSinkingID);
addPass(&PeepholeOptimizerID, false);
addPass(&PeepholeOptimizerID);
// Clean-up the dead code that may have been generated by peephole
// rewriting.
addPass(&DeadMachineInstructionElimID);