This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 37521757fa [CodeComplete] Fix crash when completing params function dec [...] new ef858170ac Lift VFS from clang to llvm (NFC)
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: include/clang/Basic/FileManager.h | 18 +- include/clang/Basic/FileSystemStatCache.h | 20 +- include/clang/Basic/VirtualFileSystem.h | 529 ------ include/clang/Driver/Distro.h | 4 +- include/clang/Driver/Driver.h | 13 +- include/clang/Driver/ToolChain.h | 13 +- include/clang/Format/Format.h | 12 +- include/clang/Frontend/ASTUnit.h | 48 +- include/clang/Frontend/CompilerInstance.h | 6 +- include/clang/Frontend/CompilerInvocation.h | 21 +- include/clang/Frontend/PrecompiledPreamble.h | 23 +- include/clang/Frontend/Utils.h | 8 +- include/clang/Tooling/StandaloneExecution.h | 3 +- include/clang/Tooling/Tooling.h | 14 +- lib/Basic/CMakeLists.txt | 1 - lib/Basic/FileManager.cpp | 12 +- lib/Basic/FileSystemStatCache.cpp | 16 +- lib/Basic/SourceManager.cpp | 4 +- lib/Basic/VirtualFileSystem.cpp | 2142 ---------------------- lib/Driver/Distro.cpp | 5 +- lib/Driver/Driver.cpp | 6 +- lib/Driver/ToolChain.cpp | 6 +- lib/Driver/ToolChains/BareMetal.cpp | 7 +- lib/Driver/ToolChains/CommonArgs.cpp | 4 +- lib/Driver/ToolChains/Cuda.cpp | 2 +- lib/Driver/ToolChains/Darwin.cpp | 2 +- lib/Driver/ToolChains/FreeBSD.cpp | 2 +- lib/Driver/ToolChains/Gnu.cpp | 13 +- lib/Driver/ToolChains/Hexagon.cpp | 4 +- lib/Driver/ToolChains/Linux.cpp | 2 +- lib/Driver/ToolChains/Minix.cpp | 4 +- lib/Format/Format.cpp | 7 +- lib/Frontend/ASTUnit.cpp | 26 +- lib/Frontend/CacheTokens.cpp | 4 +- lib/Frontend/CompilerInstance.cpp | 12 +- lib/Frontend/CompilerInvocation.cpp | 20 +- lib/Frontend/CreateInvocationFromCommandLine.cpp | 2 +- lib/Frontend/FrontendAction.cpp | 9 +- lib/Frontend/PrecompiledPreamble.cpp | 36 +- lib/Index/SimpleFormatContext.h | 10 +- lib/Lex/HeaderSearch.cpp | 11 +- lib/Lex/ModuleMap.cpp | 14 +- lib/Lex/PPLexerChange.cpp | 5 +- lib/Lex/PTHLexer.cpp | 4 +- lib/Sema/SemaCodeComplete.cpp | 2 +- lib/Serialization/ModuleManager.cpp | 4 +- lib/Tooling/Core/Replacement.cpp | 6 +- lib/Tooling/StandaloneExecution.cpp | 2 +- lib/Tooling/Tooling.cpp | 36 +- tools/clang-format/ClangFormat.cpp | 10 +- tools/driver/cc1gen_reproducer_main.cpp | 2 +- tools/libclang/BuildSystem.cpp | 6 +- unittests/AST/ASTImporterTest.cpp | 10 +- unittests/AST/CommentTextTest.cpp | 2 +- unittests/Basic/CMakeLists.txt | 1 - unittests/Basic/FileManagerTest.cpp | 10 +- unittests/Basic/VirtualFileSystemTest.cpp | 1592 ---------------- unittests/Driver/DistroTest.cpp | 24 +- unittests/Driver/ToolChainTest.cpp | 14 +- unittests/Format/FormatTest.cpp | 4 +- unittests/Index/IndexTests.cpp | 2 +- unittests/Lex/HeaderSearchTest.cpp | 4 +- unittests/Lex/PPCallbacksTest.cpp | 42 +- unittests/Rename/ClangRenameTest.h | 2 +- unittests/Tooling/RefactoringTest.cpp | 16 +- unittests/Tooling/RewriterTestContext.h | 16 +- unittests/Tooling/ToolingTest.cpp | 24 +- 67 files changed, 354 insertions(+), 4601 deletions(-) delete mode 100644 include/clang/Basic/VirtualFileSystem.h delete mode 100644 lib/Basic/VirtualFileSystem.cpp delete mode 100644 unittests/Basic/VirtualFileSystemTest.cpp