diff options
author | Kostya Serebryany <kcc@google.com> | 2015-05-07 04:01:39 +0000 |
---|---|---|
committer | Kostya Serebryany <kcc@google.com> | 2015-05-07 04:01:39 +0000 |
commit | 9ba68b35665b29560bd595ea7b5b226f25475d27 (patch) | |
tree | 8192f75f4aee65eb5b0002cbda0b90f5a1f663e0 /clang/tools/clang-format/fuzzer/ClangFormatFuzzer.cpp | |
parent | d9ba224f66af76e66352dcabd52a030e382ee235 (diff) | |
download | bcm5719-llvm-9ba68b35665b29560bd595ea7b5b226f25475d27.tar.gz bcm5719-llvm-9ba68b35665b29560bd595ea7b5b226f25475d27.zip |
fix clang-fuzzer and clang-format-fuzzer
llvm-svn: 236691
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); |