mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-03 14:08:57 +00:00
Remove verification after PHIElimination when using LiveIntervals, and move it
after the two-address pass. The remaining problems in 'make check' are occurring later. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@175598 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
2650a82cc4
commit
767e04307f
@ -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
Block a user