mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-02-01 14:46:26 +00:00
[fuzzer] properly enable asan's coverage feedback
llvm-svn: 227254
This commit is contained in:
parent
6b280777b7
commit
bfa3f9d82f
@ -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 {
|
||||
|
Loading…
x
Reference in New Issue
Block a user