Remove this debug output. The MachineFunction will be printed once all of
authorDan Gohman <gohman@apple.com>
Fri, 30 Apr 2010 21:21:21 +0000 (21:21 +0000)
committerDan Gohman <gohman@apple.com>
Fri, 30 Apr 2010 21:21:21 +0000 (21:21 +0000)
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

lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp

index b8ebe8afff471c1bde045290e34c6f5f4d1fd23a..a01cc43f34c2351e7c90fe120afa1092f2d76f9c 100644 (file)
@@ -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)