1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00

Always verify dominfo if expensive checking is enabled.

llvm-svn: 72253
This commit is contained in:
Duncan Sands 2009-05-22 08:52:53 +00:00
parent 82df35a657
commit 5be81a26da

View File

@ -43,7 +43,12 @@ enum PassDebugLevel {
None, Arguments, Structure, Executions, Details
};
// Always verify dominfo if expensive checking is enabled.
#ifdef XDEBUG
bool VerifyDomInfo = true;
#else
bool VerifyDomInfo = false;
#endif
static cl::opt<bool,true>
VerifyDomInfoX("verify-dom-info", cl::location(VerifyDomInfo),
cl::desc("Verify dominator info (time consuming)"));