mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-18 10:24:45 +00:00
Always verify dominfo if expensive checking is enabled.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@72253 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -43,7 +43,12 @@ enum PassDebugLevel {
|
|||||||
None, Arguments, Structure, Executions, Details
|
None, Arguments, Structure, Executions, Details
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Always verify dominfo if expensive checking is enabled.
|
||||||
|
#ifdef XDEBUG
|
||||||
|
bool VerifyDomInfo = true;
|
||||||
|
#else
|
||||||
bool VerifyDomInfo = false;
|
bool VerifyDomInfo = false;
|
||||||
|
#endif
|
||||||
static cl::opt<bool,true>
|
static cl::opt<bool,true>
|
||||||
VerifyDomInfoX("verify-dom-info", cl::location(VerifyDomInfo),
|
VerifyDomInfoX("verify-dom-info", cl::location(VerifyDomInfo),
|
||||||
cl::desc("Verify dominator info (time consuming)"));
|
cl::desc("Verify dominator info (time consuming)"));
|
||||||
|
Reference in New Issue
Block a user