aboutsummaryrefslogtreecommitdiffstats
path: root/lib/VMCore
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
commite414c1e0cd9d1c1e0e650c5710c3df04bf707762 (patch)
tree799955455e1e46541f8e8327e1c97de15ea5e1bd /lib/VMCore
parent07fbbcdcfb6812cd5986ccc0188b293a8d01e961 (diff)
downloadexternal_llvm-e414c1e0cd9d1c1e0e650c5710c3df04bf707762.zip
external_llvm-e414c1e0cd9d1c1e0e650c5710c3df04bf707762.tar.gz
external_llvm-e414c1e0cd9d1c1e0e650c5710c3df04bf707762.tar.bz2
Remove temporary debugging hack.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@82953 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore')
-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 40e4c4b..b49faf8 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();