Remove debugging code.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52016 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Owen Anderson 2008-06-05 18:43:34 +00:00
parent 96a89c70df
commit 417dc2f595

View File

@ -800,8 +800,6 @@ void StrongPHIElimination::mergeLiveIntervals(unsigned primary,
bool StrongPHIElimination::runOnMachineFunction(MachineFunction &Fn) {
LiveIntervals& LI = getAnalysis<LiveIntervals>();
LI.dump();
// Compute DFS numbers of each block
computeDFS(Fn);
@ -864,7 +862,5 @@ bool StrongPHIElimination::runOnMachineFunction(MachineFunction &Fn) {
LI.computeNumbering();
LI.dump();
return true;
}