[fuzzer] move default sanitizer options to a separate file
[oota-llvm.git] / lib / Fuzzer / FuzzerMain.cpp
index 294b9ccc4298f7bfcdac3f5627c2913b0485efcc..15a325d3159cf923dc2ff3f09cedf89e4894c40e 100644 (file)
 #include <atomic>
 #include <mutex>
 
-// ASAN options:
-//   * don't dump the coverage to disk.
-//   * enable coverage by default.
-extern "C" const char *__asan_default_options() {
-  return "coverage_pcs=0:coverage=1";
-}
-
 // Program arguments.
 struct FlagDescription {
   const char *Name;