2019-02-21 08:57:14 +01:00
|
|
|
//===-- DummyISelFuzzer.cpp - Entry point to sanity check the fuzzer ------===//
|
2017-09-01 19:02:22 +02:00
|
|
|
//
|
2019-01-19 09:50:56 +01:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2017-09-01 19:02:22 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// Implementation of main so we can build and test without linking libFuzzer.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2017-09-03 01:43:04 +02:00
|
|
|
#include "llvm/FuzzMutate/FuzzerCLI.h"
|
2017-09-01 19:02:22 +02:00
|
|
|
|
|
|
|
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size);
|
2017-09-01 21:37:49 +02:00
|
|
|
extern "C" int LLVMFuzzerInitialize(int *argc, char ***argv);
|
2017-09-01 19:02:22 +02:00
|
|
|
int main(int argc, char *argv[]) {
|
2017-09-03 01:43:04 +02:00
|
|
|
return llvm::runFuzzerOnInputs(argc, argv, LLVMFuzzerTestOneInput,
|
|
|
|
LLVMFuzzerInitialize);
|
2017-09-01 19:02:22 +02:00
|
|
|
}
|