r242505 - Fix clang-fuzzer build after r242499.
Adrian Prantl
aprantl at apple.com
Thu Jul 16 21:07:47 PDT 2015
Author: adrian
Date: Thu Jul 16 23:07:47 2015
New Revision: 242505
URL: http://llvm.org/viewvc/llvm-project?rev=242505&view=rev
Log:
Fix clang-fuzzer build after r242499.
Modified:
cfe/trunk/tools/clang-fuzzer/ClangFuzzer.cpp
Modified: cfe/trunk/tools/clang-fuzzer/ClangFuzzer.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/tools/clang-fuzzer/ClangFuzzer.cpp?rev=242505&r1=242504&r2=242505&view=diff
==============================================================================
--- cfe/trunk/tools/clang-fuzzer/ClangFuzzer.cpp (original)
+++ cfe/trunk/tools/clang-fuzzer/ClangFuzzer.cpp Thu Jul 16 23:07:47 2015
@@ -40,7 +40,7 @@ extern "C" void LLVMFuzzerTestOneInput(u
std::unique_ptr<tooling::ToolAction> action(
tooling::newFrontendActionFactory<clang::SyntaxOnlyAction>());
std::shared_ptr<PCHContainerOperations> PCHContainerOps =
- std::make_shared<RawPCHContainerOperations>();
+ std::make_shared<PCHContainerOperations>();
action->runInvocation(Invocation.release(), Files.get(), PCHContainerOps,
&Diags);
}
More information about the cfe-commits
mailing list