don't print dominators every time it is computed with -debug.
authorChris Lattner <sabre@nondot.org>
Mon, 21 Apr 2008 06:19:02 +0000 (06:19 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 21 Apr 2008 06:19:02 +0000 (06:19 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50032 91177308-0d34-0410-b5e6-96231b3b80d8

lib/VMCore/Dominators.cpp

index e02ade770610e8373ef05e67e23add32c5e9eddd..5aa3f34e876e76c553ab5eee5bd37ea19b242dbe 100644 (file)
 //
 //===----------------------------------------------------------------------===//
 
-#define DEBUG_TYPE "domtree"
-
 #include "llvm/Analysis/Dominators.h"
 #include "llvm/Support/CFG.h"
 #include "llvm/Support/Compiler.h"
-#include "llvm/Support/Debug.h"
 #include "llvm/ADT/DepthFirstIterator.h"
 #include "llvm/ADT/SetOperations.h"
 #include "llvm/ADT/SmallPtrSet.h"
@@ -61,7 +58,6 @@ E("domtree", "Dominator Tree Construction", true, true);
 
 bool DominatorTree::runOnFunction(Function &F) {
   DT->recalculate(F);
-  DEBUG(DT->dump());
   return false;
 }