forked from OSchip/llvm-project
Remove verification after PHIElimination when using LiveIntervals, and move it
after the two-address pass. The remaining problems in 'make check' are occurring later. llvm-svn: 175598
This commit is contained in:
parent
68fbc4f642
commit
3673581de9
|
@ -172,9 +172,6 @@ bool PHIElimination::runOnMachineFunction(MachineFunction &MF) {
|
|||
ImpDefs.clear();
|
||||
VRegPHIUseCount.clear();
|
||||
|
||||
if (LIS)
|
||||
MF.verify(this, "After PHI elimination");
|
||||
|
||||
return Changed;
|
||||
}
|
||||
|
||||
|
|
|
@ -1437,6 +1437,9 @@ bool TwoAddressInstructionPass::runOnMachineFunction(MachineFunction &Func) {
|
|||
}
|
||||
}
|
||||
|
||||
if (LIS)
|
||||
MF->verify(this, "After two-address instruction pass");
|
||||
|
||||
return MadeChange;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue