From 25e98e8a3e75a63761ea270fef0a568831866d13 Mon Sep 17 00:00:00 2001 From: Benjamin Kramer Date: Tue, 22 Oct 2019 07:51:37 +0000 Subject: [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 --- tools/clang-fuzzer/ExampleClangProtoFuzzer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()); } -- cgit v1.2.1