Skip to content

Commit d0c3b86

Browse files
committed
Flip condition
1 parent 572e558 commit d0c3b86

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

llvm/lib/Bitcode/Writer/BitcodeWriter.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,10 +108,10 @@ static cl::opt<bool> WriteRelBFToSummary(
108108
// FIXME: Convert to a const once this has undergone more sigificant testing.
109109
static cl::opt<bool>
110110
CombinedIndexMemProfContext("combined-index-memprof-context", cl::Hidden,
111-
#ifndef NDEBUG
112-
cl::init(true),
113-
#else
111+
#ifdef NDEBUG
114112
cl::init(false),
113+
#else
114+
cl::init(true),
115115
#endif
116116
cl::desc(""));
117117

0 commit comments

Comments
 (0)