diff options
author | Kostya Serebryany <kcc@google.com> | 2015-02-06 19:52:07 +0000 |
---|---|---|
committer | Kostya Serebryany <kcc@google.com> | 2015-02-06 19:52:07 +0000 |
commit | db4d6457140fae179769b3e7acbc22c3257e1970 (patch) | |
tree | b81b5e224f8b9398586f24d31d61cb3ab9f34d09 /llvm/lib/Fuzzer/FuzzerMain.cpp | |
parent | 079ba9224fd2431c343a77558539d897e24842a4 (diff) | |
download | llvm-db4d6457140fae179769b3e7acbc22c3257e1970.zip llvm-db4d6457140fae179769b3e7acbc22c3257e1970.tar.gz llvm-db4d6457140fae179769b3e7acbc22c3257e1970.tar.bz2 |
[fuzzer] move default sanitizer options to a separate file
llvm-svn: 228429
Diffstat (limited to 'llvm/lib/Fuzzer/FuzzerMain.cpp')
-rw-r--r-- | llvm/lib/Fuzzer/FuzzerMain.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/llvm/lib/Fuzzer/FuzzerMain.cpp b/llvm/lib/Fuzzer/FuzzerMain.cpp index 294b9cc..15a325d 100644 --- a/llvm/lib/Fuzzer/FuzzerMain.cpp +++ b/llvm/lib/Fuzzer/FuzzerMain.cpp @@ -18,13 +18,6 @@ #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; |