[fuzzer] properly enable asan's coverage feedback

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@227254 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Kostya Serebryany 2015-01-27 22:19:55 +00:00
parent 5d68306018
commit 556d1a3b80

View File

@ -18,7 +18,10 @@
// ASAN options:
// * don't dump the coverage to disk.
extern "C" const char* __asan_default_options() { return "coverage_pcs=0"; }
// * enable coverage by default.
extern "C" const char *__asan_default_options() {
return "coverage_pcs=0:coverage=1";
}
// Program arguments.
struct FlagDescription {