This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 3a47836eeb [CMake] Support stripping and linking output to .build-id directory new d28cf14aed Modules: Rename MemoryBufferCache to InMemoryModuleCache
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/Frontend/ASTUnit.h | 4 +- include/clang/Frontend/CompilerInstance.h | 11 ++-- include/clang/Lex/Preprocessor.h | 4 -- include/clang/Serialization/ASTReader.h | 9 ++-- include/clang/Serialization/ASTWriter.h | 9 ++-- .../InMemoryModuleCache.h} | 32 ++++++----- include/clang/Serialization/Module.h | 2 +- include/clang/Serialization/ModuleManager.h | 8 +-- lib/Basic/CMakeLists.txt | 1 - lib/Basic/MemoryBufferCache.cpp | 47 ---------------- lib/Frontend/ASTUnit.cpp | 28 +++++----- lib/Frontend/ChainedIncludesSource.cpp | 8 +-- lib/Frontend/CompilerInstance.cpp | 62 +++++++++++----------- lib/Frontend/FrontendActions.cpp | 22 ++++---- lib/Frontend/PrecompiledPreamble.cpp | 9 ++-- lib/Frontend/Rewrite/FrontendActions.cpp | 2 +- lib/Lex/Preprocessor.cpp | 6 +-- lib/Serialization/ASTReader.cpp | 17 +++--- lib/Serialization/ASTWriter.cpp | 13 ++--- lib/Serialization/CMakeLists.txt | 1 + lib/Serialization/GeneratePCH.cpp | 6 +-- lib/Serialization/InMemoryModuleCache.cpp | 49 +++++++++++++++++ lib/Serialization/ModuleManager.cpp | 28 +++++----- test/Modules/outofdate-rebuild.m | 2 +- unittests/Basic/CMakeLists.txt | 1 - unittests/Basic/SourceManagerTest.cpp | 10 ++-- unittests/CMakeLists.txt | 1 + unittests/Lex/HeaderSearchTest.cpp | 2 +- unittests/Lex/LexerTest.cpp | 4 +- unittests/Lex/PPCallbacksTest.cpp | 13 ++--- unittests/Lex/PPConditionalDirectiveRecordTest.cpp | 4 +- unittests/Serialization/CMakeLists.txt | 17 ++++++ .../InMemoryModuleCacheTest.cpp} | 12 ++--- 33 files changed, 227 insertions(+), 217 deletions(-) rename include/clang/{Basic/MemoryBufferCache.h => Serialization/InMemoryModuleCac [...] delete mode 100644 lib/Basic/MemoryBufferCache.cpp create mode 100644 lib/Serialization/InMemoryModuleCache.cpp create mode 100644 unittests/Serialization/CMakeLists.txt rename unittests/{Basic/MemoryBufferCacheTest.cpp => Serialization/InMemoryModuleC [...]