Disable dom info verifier by default.
authorDevang Patel <dpatel@apple.com>
Tue, 1 Jul 2008 21:36:11 +0000 (21:36 +0000)
committerDevang Patel <dpatel@apple.com>
Tue, 1 Jul 2008 21:36:11 +0000 (21:36 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52983 91177308-0d34-0410-b5e6-96231b3b80d8

lib/VMCore/PassManager.cpp

index 5648e95db549ec2d28268302ce093366fd034620..1eca64fb36cb9d9ce6f8b76b6fd14852a8b69800 100644 (file)
@@ -42,7 +42,7 @@ enum PassDebugLevel {
   None, Arguments, Structure, Executions, Details
 };
 
-bool VerifyDomInfo = true;
+bool VerifyDomInfo = false;
 static cl::opt<bool,true>
 VerifyDomInfoX("verify-dom-info", cl::location(VerifyDomInfo),
                cl::desc("Verify dominator info (time consuming)"));