]> granicus.if.org Git - clang/commitdiff
Fix clang-fuzzer build after r242499.
authorAdrian Prantl <aprantl@apple.com>
Fri, 17 Jul 2015 04:07:47 +0000 (04:07 +0000)
committerAdrian Prantl <aprantl@apple.com>
Fri, 17 Jul 2015 04:07:47 +0000 (04:07 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@242505 91177308-0d34-0410-b5e6-96231b3b80d8

tools/clang-fuzzer/ClangFuzzer.cpp

index 124911cd4a54d3990553937b59640b684c91c295..81b2f2fe197e3f0c21b558d7cccf29d1b3d7be72 100644 (file)
@@ -40,7 +40,7 @@ extern "C" void LLVMFuzzerTestOneInput(uint8_t *data, size_t size) {
   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);
 }