Skip to content

Commit

Permalink
[libfuzzer] Removing coverage-related flags from asan options.
Browse files Browse the repository at this point in the history
Summary:
Reasons to remove are twofold:
 - we don't really need coverage=1 for libfuzzer operation
 - makes controlling coverage for fuzzer processes non-trivial.

Differential Revision: http://reviews.llvm.org/D17168

llvm-svn: 260611
  • Loading branch information
aizatsky-chromium committed Feb 11, 2016
1 parent 36983cc commit fcb06b4
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions llvm/lib/Fuzzer/FuzzerSanitizerOptions.cpp
Expand Up @@ -10,10 +10,8 @@
// Options reside in a separate file, so if we don't want to set the default
// options we simply do not link this file in.
// ASAN options:
// * don't dump the coverage to disk.
// * enable coverage by default.
// * enable handle_abort.
//===----------------------------------------------------------------------===//
extern "C" const char *__asan_default_options() {
return "coverage_pcs=0:coverage=1:handle_abort=1";
return "handle_abort=1";
}

0 comments on commit fcb06b4

Please sign in to comment.