Remove debugging code.
authorOwen Anderson <resistor@mac.com>
Thu, 5 Jun 2008 18:43:34 +0000 (18:43 +0000)
committerOwen Anderson <resistor@mac.com>
Thu, 5 Jun 2008 18:43:34 +0000 (18:43 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52016 91177308-0d34-0410-b5e6-96231b3b80d8

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;
 }