[NewPM] Set verify-cfg-preserved=1 by default for debug builds

This commit is contained in:
Yevgeny Rouban 2021-04-07 08:34:30 +07:00
parent 401826800e
commit b5c63e30ca
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ cl::opt<bool> PreservedCFGCheckerInstrumentation::VerifyPreservedCFG(
#ifdef NDEBUG
cl::init(false));
#else
cl::init(false));
cl::init(true));
#endif
// FIXME: Change `-debug-pass-manager` from boolean to enum type. Similar to