From: Dan Gohman Date: Mon, 28 Sep 2009 00:44:15 +0000 (+0000) Subject: Remove temporary debugging hack. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=a9245d63f64dc8af8ddd877b94523fcc52c1d702;p=oota-llvm.git Remove temporary debugging hack. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@82953 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/VMCore/Dominators.cpp b/lib/VMCore/Dominators.cpp index 40e4c4bc4c8..b49faf84dce 100644 --- a/lib/VMCore/Dominators.cpp +++ b/lib/VMCore/Dominators.cpp @@ -60,7 +60,7 @@ bool DominatorTree::runOnFunction(Function &F) { } void DominatorTree::verifyAnalysis() const { - if (!VerifyDomInfo || true /* fixme */) return; + if (!VerifyDomInfo) return; Function &F = *getRoot()->getParent();