From a9245d63f64dc8af8ddd877b94523fcc52c1d702 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Mon, 28 Sep 2009 00:44:15 +0000 Subject: [PATCH] Remove temporary debugging hack. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@82953 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/VMCore/Dominators.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();