diff options
author | Owen Anderson <resistor@mac.com> | 2008-06-05 18:43:34 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2008-06-05 18:43:34 +0000 |
commit | 417dc2f5958b7233011b55bf36b20eae5a50f83f (patch) | |
tree | 45b473a7ae29a57265e37a3b5779182b13567c64 /lib | |
parent | 96a89c70dfe6f98c50eb4a3aee80d075aadee361 (diff) | |
download | external_llvm-417dc2f5958b7233011b55bf36b20eae5a50f83f.zip external_llvm-417dc2f5958b7233011b55bf36b20eae5a50f83f.tar.gz external_llvm-417dc2f5958b7233011b55bf36b20eae5a50f83f.tar.bz2 |
Remove debugging code.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52016 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/CodeGen/StrongPHIElimination.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/CodeGen/StrongPHIElimination.cpp b/lib/CodeGen/StrongPHIElimination.cpp index 57958ca..5267d91 100644 --- a/lib/CodeGen/StrongPHIElimination.cpp +++ b/lib/CodeGen/StrongPHIElimination.cpp @@ -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; } |