From e7fd7c688689a0f51caf350af47c87fb6a915b92 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Fri, 30 Apr 2010 21:21:21 +0000 Subject: [PATCH] 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 --- lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp index b8ebe8afff4..a01cc43f34c 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) -- 2.34.1