aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-09-28 00:44:15 +0000
committerDan Gohman <gohman@apple.com>2009-09-28 00:44:15 +0000
commita9245d63f64dc8af8ddd877b94523fcc52c1d702 (patch)
tree799955455e1e46541f8e8327e1c97de15ea5e1bd
parent9450b0e1a6154192ca597ad27f8eb6e6e807f7a4 (diff)
Remove temporary debugging hack.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@82953 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/VMCore/Dominators.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VMCore/Dominators.cpp b/lib/VMCore/Dominators.cpp
index 40e4c4bc4c..b49faf84dc 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();