mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
[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:
parent
5d68306018
commit
556d1a3b80
@ -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…
Reference in New Issue
Block a user