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

Mike Aizatsky via llvm-commits llvm-commits at lists.llvm.org
Thu Feb 11 14:24:54 PST 2016


This revision was automatically updated to reflect the committed changes.
Closed by commit rL260611: [libfuzzer] Removing coverage-related flags from asan options. (authored by aizatsky).

Changed prior to commit:
  http://reviews.llvm.org/D17168?vs=47721&id=47729#toc

Repository:
  rL LLVM

http://reviews.llvm.org/D17168

Files:
  llvm/trunk/lib/Fuzzer/FuzzerSanitizerOptions.cpp

Index: llvm/trunk/lib/Fuzzer/FuzzerSanitizerOptions.cpp
===================================================================
--- llvm/trunk/lib/Fuzzer/FuzzerSanitizerOptions.cpp
+++ llvm/trunk/lib/Fuzzer/FuzzerSanitizerOptions.cpp
@@ -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";
 }


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D17168.47729.patch
Type: text/x-patch
Size: 717 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20160211/2f9df4d5/attachment.bin>


More information about the llvm-commits mailing list