mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-03 08:51:43 +00:00
Enable machine code verification after the late machine optimization passes.
Branch folding invalidates liveness and disables liveness verification on some targets. llvm-svn: 153597
This commit is contained in:
parent
37927fe83c
commit
f5df00f0fb
@ -601,15 +601,15 @@ void TargetPassConfig::addOptimizedRegAlloc(FunctionPass *RegAllocPass) {
|
||||
void TargetPassConfig::addMachineLateOptimization() {
|
||||
// Branch folding must be run after regalloc and prolog/epilog insertion.
|
||||
if (addPass(BranchFolderPassID) != &NoPassID)
|
||||
printNoVerify("After BranchFolding");
|
||||
printAndVerify("After BranchFolding");
|
||||
|
||||
// Tail duplication.
|
||||
if (addPass(TailDuplicateID) != &NoPassID)
|
||||
printNoVerify("After TailDuplicate");
|
||||
printAndVerify("After TailDuplicate");
|
||||
|
||||
// Copy propagation.
|
||||
if (addPass(MachineCopyPropagationID) != &NoPassID)
|
||||
printNoVerify("After copy propagation pass");
|
||||
printAndVerify("After copy propagation pass");
|
||||
}
|
||||
|
||||
/// Add standard basic block placement passes.
|
||||
|
Loading…
Reference in New Issue
Block a user