[NFC][Py Reformat] Reformat python files in llvm
[llvm-project.git] / llvm / tools / llvm-special-case-list-fuzzer / special-case-list-fuzzer.cpp
blobaaab5f8470c9d075f8d348b29b533120d29eb21e
1 //===--- special-case-list-fuzzer.cpp - Fuzzer for special case lists -----===//
2 //
3 // 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
6 //
7 //===----------------------------------------------------------------------===//
9 #include "llvm/Support/MemoryBuffer.h"
10 #include "llvm/Support/SpecialCaseList.h"
12 #include <cstdlib>
14 extern "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);
18 if (!Buf)
19 return 0;
21 std::string Error;
22 llvm::SpecialCaseList::create(Buf.get(), Error);
24 return 0;