/src/llvm-project/llvm/tools/llvm-special-case-list-fuzzer/special-case-list-fuzzer.cpp
Line | Count | Source (jump to first uncovered line) |
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 | | //===----------------------------------------------------------------------===// |
8 | | |
9 | | #include "llvm/Support/MemoryBuffer.h" |
10 | | #include "llvm/Support/SpecialCaseList.h" |
11 | | |
12 | | #include <cstdlib> |
13 | | |
14 | 4.92k | extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) { |
15 | 4.92k | std::string Payload(reinterpret_cast<const char *>(Data), Size); |
16 | 4.92k | std::unique_ptr<llvm::MemoryBuffer> Buf = |
17 | 4.92k | llvm::MemoryBuffer::getMemBuffer(Payload); |
18 | | |
19 | 4.92k | if (!Buf) |
20 | 0 | return 0; |
21 | | |
22 | 4.92k | std::string Error; |
23 | 4.92k | llvm::SpecialCaseList::create(Buf.get(), Error); |
24 | | |
25 | 4.92k | return 0; |
26 | 4.92k | } |