commit | dbb3acf4655c2327a474a969c37ebe3743a2091f | [log] [tgz] |
---|---|---|
author | Owen Anderson <resistor@mac.com> | Thu Jun 05 18:43:34 2008 +0000 |
committer | Owen Anderson <resistor@mac.com> | Thu Jun 05 18:43:34 2008 +0000 |
tree | 45b473a7ae29a57265e37a3b5779182b13567c64 | |
parent | 5e75e65a523c0cfe040f3020a23e62a9468f6ec0 [diff] |
Remove debugging code. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52016 91177308-0d34-0410-b5e6-96231b3b80d8
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 @@ bool StrongPHIElimination::runOnMachineFunction(MachineFunction &Fn) { LiveIntervals& LI = getAnalysis<LiveIntervals>(); - LI.dump(); - // Compute DFS numbers of each block computeDFS(Fn); @@ -864,7 +862,5 @@ LI.computeNumbering(); - LI.dump(); - return true; }