When extending a liveinterval by commuting, don't throw away the live ranges that...
[oota-llvm.git] / lib / CodeGen / StrongPHIElimination.cpp
index 57958ca05697f37492cb9e0ceff5e31497204e14..5267d91d44e78ec286defa72f1fb05967b1207c5 100644 (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;
 }