From: Benjamin Kramer Date: Tue, 22 Oct 2019 07:51:37 +0000 (+0000) Subject: [clang-fuzzer] Update proto fuzzer example for r375453. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=25e98e8a3e75a63761ea270fef0a568831866d13;p=clang [clang-fuzzer] Update proto fuzzer example for r375453. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@375487 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/clang-fuzzer/ExampleClangProtoFuzzer.cpp b/tools/clang-fuzzer/ExampleClangProtoFuzzer.cpp index 651f5c99a8..1d9636e6f6 100644 --- a/tools/clang-fuzzer/ExampleClangProtoFuzzer.cpp +++ b/tools/clang-fuzzer/ExampleClangProtoFuzzer.cpp @@ -23,5 +23,5 @@ using namespace clang_fuzzer; DEFINE_BINARY_PROTO_FUZZER(const Function& input) { auto S = FunctionToString(input); - HandleCXX(S, GetCLArgs()); + HandleCXX(S, "./test.cc", GetCLArgs()); }