forked from OSchip/llvm-project
[libFuzzer] remove FuzzerSanitizerOptions.cpp
llvm-svn: 262354
This commit is contained in:
parent
433b241570
commit
f84df30e4f
|
@ -10,7 +10,6 @@ if( LLVM_USE_SANITIZE_COVERAGE )
|
|||
FuzzerIO.cpp
|
||||
FuzzerLoop.cpp
|
||||
FuzzerMutate.cpp
|
||||
FuzzerSanitizerOptions.cpp
|
||||
FuzzerSHA1.cpp
|
||||
FuzzerTracePC.cpp
|
||||
FuzzerUtil.cpp
|
||||
|
|
|
@ -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";
|
||||
}
|
Loading…
Reference in New Issue