[libfuzzer] Removing coverage-related flags from asan options.

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
This commit is contained in:
Mike Aizatsky 2016-02-11 22:20:34 +00:00
parent 36983ccace
commit fcb06b4aa5
1 changed files with 1 additions and 3 deletions

View File

@ -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";
}