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
commit9909dc57f84619aff2e1813b2b85a9b75d03a796 (patch)
tree41285cfc97502cea5ae28afb373d9854f1fd836f /lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
parent2d6824fb98bd262ef04a8db7a254b9d6052b3eef (diff)
downloadexternal_llvm-9909dc57f84619aff2e1813b2b85a9b75d03a796.zip
external_llvm-9909dc57f84619aff2e1813b2b85a9b75d03a796.tar.gz
external_llvm-9909dc57f84619aff2e1813b2b85a9b75d03a796.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)