blob: aaab5f8470c9d075f8d348b29b533120d29eb21e [file] [log] [blame]
Matt Morehouse3f6c1622017-10-17 17:43:34 +00001//===--- special-case-list-fuzzer.cpp - Fuzzer for special case lists -----===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Matt Morehouse3f6c1622017-10-17 17:43:34 +00006//
7//===----------------------------------------------------------------------===//
8
9#include "llvm/Support/MemoryBuffer.h"
10#include "llvm/Support/SpecialCaseList.h"
11
12#include <cstdlib>
13
14extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
15 std::unique_ptr<llvm::MemoryBuffer> Buf = llvm::MemoryBuffer::getMemBuffer(
16 llvm::StringRef(reinterpret_cast<const char *>(Data), Size), "", false);
17
18 if (!Buf)
19 return 0;
20
21 std::string Error;
22 llvm::SpecialCaseList::create(Buf.get(), Error);
23
24 return 0;
25}