[llvm-objcopy] [COFF] Implmement --strip-unneeded and -x/--discard-all for symbols
[llvm-complete.git] / tools / llvm-itanium-demangle-fuzzer / llvm-itanium-demangle-fuzzer.cpp
blob07c290a0be5c800e08cfb1ea60e8f422c9c800dc
1 //===--- llvm-demangle-fuzzer.cpp - Fuzzer for the Itanium Demangler ------===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
10 #include "llvm/Demangle/Demangle.h"
12 #include <cstdint>
13 #include <cstdlib>
14 #include <string>
16 extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
17 std::string NullTerminatedString((const char *)Data, Size);
18 int status = 0;
19 if (char *demangle = llvm::itaniumDemangle(NullTerminatedString.c_str(), nullptr,
20 nullptr, &status))
21 free(demangle);
23 return 0;