diff --git a/llvm/lib/Passes/StandardInstrumentations.cpp b/llvm/lib/Passes/StandardInstrumentations.cpp index 44f30110448588..0c344cdf31172d 100644 --- a/llvm/lib/Passes/StandardInstrumentations.cpp +++ b/llvm/lib/Passes/StandardInstrumentations.cpp @@ -44,10 +44,11 @@ using namespace llvm; cl::opt PreservedCFGCheckerInstrumentation::VerifyPreservedCFG( "verify-cfg-preserved", cl::Hidden, #ifdef NDEBUG - cl::init(false)); + cl::init(false) #else - cl::init(true)); + cl::init(true) #endif + ); // An option that prints out the IR after passes, similar to // -print-after-all except that it only prints the IR after passes that