diff options
author | Dan Gohman <gohman@apple.com> | 2009-09-28 00:44:15 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-09-28 00:44:15 +0000 |
commit | a9245d63f64dc8af8ddd877b94523fcc52c1d702 (patch) | |
tree | 799955455e1e46541f8e8327e1c97de15ea5e1bd | |
parent | 9450b0e1a6154192ca597ad27f8eb6e6e807f7a4 (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.cpp | 2 |
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(); |