diff options
Diffstat (limited to 'clang/tools/clang-format/fuzzer/ClangFormatFuzzer.cpp')
-rw-r--r-- | clang/tools/clang-format/fuzzer/ClangFormatFuzzer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/tools/clang-format/fuzzer/ClangFormatFuzzer.cpp b/clang/tools/clang-format/fuzzer/ClangFormatFuzzer.cpp index fff4283277e..fe4941a5ba1 100644 --- a/clang/tools/clang-format/fuzzer/ClangFormatFuzzer.cpp +++ b/clang/tools/clang-format/fuzzer/ClangFormatFuzzer.cpp @@ -15,7 +15,7 @@ #include "clang/Format/Format.h" -extern "C" void TestOneInput(uint8_t *data, size_t size) { +extern "C" void LLVMFuzzerTestOneInput(uint8_t *data, size_t size) { // FIXME: fuzz more things: different styles, different style features. std::string s((const char *)data, size); auto Style = getGoogleStyle(clang::format::FormatStyle::LK_Cpp); |