forked from OSchip/llvm-project
[ASan] Enable instrumentation of dynamic allocas by default.
llvm-svn: 251056
This commit is contained in:
parent
77db4a8552
commit
f4fb5f500c
|
@ -194,7 +194,7 @@ static cl::opt<std::string> ClMemoryAccessCallbackPrefix(
|
|||
cl::init("__asan_"));
|
||||
static cl::opt<bool> ClInstrumentAllocas("asan-instrument-allocas",
|
||||
cl::desc("instrument dynamic allocas"),
|
||||
cl::Hidden, cl::init(false));
|
||||
cl::Hidden, cl::init(true));
|
||||
static cl::opt<bool> ClSkipPromotableAllocas(
|
||||
"asan-skip-promotable-allocas",
|
||||
cl::desc("Do not instrument promotable allocas"), cl::Hidden,
|
||||
|
|
Loading…
Reference in New Issue