Disable dom info verifier by default.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52983 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Devang Patel 2008-07-01 21:36:11 +00:00
parent 6518c6ed7e
commit f35cfe11ef

View 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)"));