This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from c863f71 [TLI] Fix NumParams==0 prototype checking typo. new 213d3d3 [codeview] Move StreamInterface and StreamReader to libcodeview. new 5861418 Simplify std::all_of/any_of predicates by using llvm::all_of/ [...]
The 2 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: .../DebugInfo/{PDB/Raw => CodeView}/ByteStream.h | 11 ++-- .../Raw/RawError.h => CodeView/CodeViewError.h} | 23 ++++---- .../{PDB/Raw => CodeView}/StreamInterface.h | 12 ++-- .../DebugInfo/{PDB/Raw => CodeView}/StreamReader.h | 19 ++++--- include/llvm/DebugInfo/PDB/Raw/DbiStream.h | 16 +++--- include/llvm/DebugInfo/PDB/Raw/MappedBlockStream.h | 4 +- include/llvm/DebugInfo/PDB/Raw/ModStream.h | 10 ++-- include/llvm/DebugInfo/PDB/Raw/NameHashTable.h | 11 ++-- include/llvm/DebugInfo/PDB/Raw/NameMap.h | 7 ++- include/llvm/DebugInfo/PDB/Raw/PublicsStream.h | 1 - include/llvm/DebugInfo/PDB/Raw/SymbolStream.h | 4 +- include/llvm/DebugInfo/PDB/Raw/TpiStream.h | 10 ++-- lib/DebugInfo/{PDB/Raw => CodeView}/ByteStream.cpp | 12 ++-- lib/DebugInfo/CodeView/CMakeLists.txt | 3 + lib/DebugInfo/CodeView/CodeViewError.cpp | 65 ++++++++++++++++++++++ .../{PDB/Raw => CodeView}/StreamReader.cpp | 7 ++- lib/DebugInfo/PDB/CMakeLists.txt | 2 - lib/DebugInfo/PDB/Raw/DbiStream.cpp | 6 +- lib/DebugInfo/PDB/Raw/InfoStream.cpp | 4 +- lib/DebugInfo/PDB/Raw/ModStream.cpp | 5 +- lib/DebugInfo/PDB/Raw/NameHashTable.cpp | 5 +- lib/DebugInfo/PDB/Raw/NameMap.cpp | 4 +- lib/DebugInfo/PDB/Raw/PublicsStream.cpp | 4 +- lib/DebugInfo/PDB/Raw/SymbolStream.cpp | 5 +- lib/DebugInfo/PDB/Raw/TpiStream.cpp | 6 +- lib/Target/X86/X86ISelLowering.cpp | 12 ++-- tools/llvm-pdbdump/llvm-pdbdump.cpp | 6 +- 27 files changed, 169 insertions(+), 105 deletions(-) rename include/llvm/DebugInfo/{PDB/Raw => CodeView}/ByteStream.h (86%) copy include/llvm/DebugInfo/{PDB/Raw/RawError.h => CodeView/CodeViewError.h} (59%) rename include/llvm/DebugInfo/{PDB/Raw => CodeView}/StreamInterface.h (74%) rename include/llvm/DebugInfo/{PDB/Raw => CodeView}/StreamReader.h (76%) rename lib/DebugInfo/{PDB/Raw => CodeView}/ByteStream.cpp (84%) create mode 100644 lib/DebugInfo/CodeView/CodeViewError.cpp rename lib/DebugInfo/{PDB/Raw => CodeView}/StreamReader.cpp (90%)