aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-04-30 21:21:21 +0000
committerDan Gohman <gohman@apple.com>2010-04-30 21:21:21 +0000
commite7fd7c688689a0f51caf350af47c87fb6a915b92 (patch)
tree41285cfc97502cea5ae28afb373d9854f1fd836f /lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
parent8387d7db193c2ab1961593487d77cefb550a82c7 (diff)
downloadexternal_llvm-e7fd7c688689a0f51caf350af47c87fb6a915b92.zip
external_llvm-e7fd7c688689a0f51caf350af47c87fb6a915b92.tar.gz
external_llvm-e7fd7c688689a0f51caf350af47c87fb6a915b92.tar.bz2
Remove this debug output. The MachineFunction will be printed once all of
instruction selection is done; it's confusing to see parts of it printed, while other parts are omitted, along the way. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@102771 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp')
-rw-r--r--lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
index b8ebe8a..a01cc43 100644
--- a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
+++ b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
@@ -833,9 +833,6 @@ void SelectionDAGISel::SelectAllBasicBlocks(const Function &Fn) {
void
SelectionDAGISel::FinishBasicBlock(MachineBasicBlock *BB) {
- DEBUG(dbgs() << "Target-post-processed machine code:\n");
- DEBUG(BB->dump());
-
DEBUG(dbgs() << "Total amount of phi nodes to update: "
<< FuncInfo->PHINodesToUpdate.size() << "\n");
DEBUG(for (unsigned i = 0, e = FuncInfo->PHINodesToUpdate.size(); i != e; ++i)