OSDN Git Service

[libFuzzer] remove FuzzerSanitizerOptions.cpp
authorKostya Serebryany <kcc@google.com>
Tue, 1 Mar 2016 17:46:32 +0000 (17:46 +0000)
committerKostya Serebryany <kcc@google.com>
Tue, 1 Mar 2016 17:46:32 +0000 (17:46 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@262354 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Fuzzer/CMakeLists.txt
lib/Fuzzer/FuzzerSanitizerOptions.cpp [deleted file]

index 3fae903..d8afb41 100644 (file)
@@ -10,7 +10,6 @@ if( LLVM_USE_SANITIZE_COVERAGE )
     FuzzerIO.cpp
     FuzzerLoop.cpp
     FuzzerMutate.cpp
-    FuzzerSanitizerOptions.cpp
     FuzzerSHA1.cpp
     FuzzerTracePC.cpp
     FuzzerUtil.cpp
diff --git a/lib/Fuzzer/FuzzerSanitizerOptions.cpp b/lib/Fuzzer/FuzzerSanitizerOptions.cpp
deleted file mode 100644 (file)
index 7c99c15..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-//===- FuzzerSanitizerOptions.cpp - default flags for sanitizers ----------===//
-//
-//                     The LLVM Compiler Infrastructure
-//
-// This file is distributed under the University of Illinois Open Source
-// License. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-// Set default options for sanitizers while running the fuzzer.
-// 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:
-//   * enable handle_abort.
-//===----------------------------------------------------------------------===//
-extern "C" const char *__asan_default_options() {
-  return "handle_abort=1";
-}