Index: lib/Tooling/Tooling.cpp =================================================================== --- lib/Tooling/Tooling.cpp +++ lib/Tooling/Tooling.cpp @@ -581,7 +581,7 @@ } std::unique_ptr buildASTFromCodeWithArgs( - const Twine &Code, const std::vector &Args, + StringRef Code, const std::vector &Args, const Twine &FileName, const Twine &ToolName, std::shared_ptr PCHContainerOps, ArgumentsAdjuster Adjuster) { @@ -602,10 +602,8 @@ getSyntaxOnlyToolArgs(ToolName, Adjuster(Args, FileNameRef), FileNameRef), &Action, Files.get(), std::move(PCHContainerOps)); - SmallString<1024> CodeStorage; InMemoryFileSystem->addFile(FileNameRef, 0, - llvm::MemoryBuffer::getMemBuffer( - Code.toNullTerminatedStringRef(CodeStorage))); + llvm::MemoryBuffer::getMemBufferCopy(Code)); if (!Invocation.run()) return nullptr;