llvm-isel-fuzzer: Stop including FuzzerInterface.h

All this does is forward declare the interface functions (and make
sure that they're `extern "C"`), but since we're using libFuzzer from
the toolchain it doesn't make sense to include the local copy of the
interface.

llvm-svn: 312195
This commit is contained in:
Justin Bogner 2017-08-31 00:01:28 +00:00
parent 65d953e0b1
commit 53bb83d250
2 changed files with 0 additions and 3 deletions

View File

@ -1,6 +1,4 @@
if( LLVM_USE_SANITIZE_COVERAGE )
include_directories(BEFORE
${CMAKE_CURRENT_SOURCE_DIR}/../../lib/Fuzzer)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsanitize=fuzzer")
set(LLVM_LINK_COMPONENTS

View File

@ -11,7 +11,6 @@
//
//===----------------------------------------------------------------------===//
#include "FuzzerInterface.h"
#include "llvm/ADT/StringRef.h"
#include "llvm/Analysis/TargetLibraryInfo.h"
#include "llvm/Bitcode/BitcodeReader.h"