This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 6781296ab73 [AMDGPU] Require waitcnt before barrier for all targets [...] new 4b1845a38ac [CodeView] Rename ModuleDebugFragment -> DebugSubsection.
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/llvm/DebugInfo/CodeView/CodeView.h | 2 +- ...ecksumFragment.h => DebugChecksumsSubsection.h} | 26 +++---- ...nesFragment.h => DebugInlineeLinesSubsection.h} | 32 ++++----- ...eDebugLineFragment.h => DebugLinesSubsection.h} | 26 +++---- .../{ModuleDebugFragment.h => DebugSubsection.h} | 22 +++--- ...bugFragmentRecord.h => DebugSubsectionRecord.h} | 39 +++++----- ...gFragmentVisitor.h => DebugSubsectionVisitor.h} | 34 +++++---- ...gUnknownFragment.h => DebugUnknownSubsection.h} | 11 ++- .../PDB/Native/DbiModuleDescriptorBuilder.h | 23 +++--- include/llvm/DebugInfo/PDB/Native/DbiStream.h | 4 +- .../llvm/DebugInfo/PDB/Native/ModuleDebugStream.h | 7 +- lib/CodeGen/AsmPrinter/CodeViewDebug.cpp | 17 +++-- lib/CodeGen/AsmPrinter/CodeViewDebug.h | 2 +- lib/DebugInfo/CodeView/CMakeLists.txt | 12 ++-- ...umFragment.cpp => DebugChecksumsSubsection.cpp} | 26 +++---- ...ragment.cpp => DebugInlineeLinesSubsection.cpp} | 36 +++++----- ...ugLineFragment.cpp => DebugLinesSubsection.cpp} | 50 +++++++------ ...ModuleDebugFragment.cpp => DebugSubsection.cpp} | 8 +-- lib/DebugInfo/CodeView/DebugSubsectionRecord.cpp | 81 +++++++++++++++++++++ lib/DebugInfo/CodeView/DebugSubsectionVisitor.cpp | 52 ++++++++++++++ lib/DebugInfo/CodeView/EnumTables.cpp | 28 ++++---- .../CodeView/ModuleDebugFragmentRecord.cpp | 84 ---------------------- .../CodeView/ModuleDebugFragmentVisitor.cpp | 52 -------------- .../PDB/Native/DbiModuleDescriptorBuilder.cpp | 18 ++--- lib/MC/MCCodeView.cpp | 6 +- tools/llvm-pdbdump/C13DebugFragmentVisitor.cpp | 14 ++-- tools/llvm-pdbdump/C13DebugFragmentVisitor.h | 22 +++--- tools/llvm-pdbdump/LLVMOutputStyle.cpp | 14 ++-- tools/llvm-pdbdump/YAMLOutputStyle.cpp | 16 ++--- tools/llvm-pdbdump/llvm-pdbdump.cpp | 13 ++-- tools/llvm-readobj/COFFDumper.cpp | 56 +++++++-------- 31 files changed, 406 insertions(+), 427 deletions(-) rename include/llvm/DebugInfo/CodeView/{ModuleDebugFileChecksumFragment.h => Debug [...] rename include/llvm/DebugInfo/CodeView/{ModuleDebugInlineeLinesFragment.h => Debug [...] rename include/llvm/DebugInfo/CodeView/{ModuleDebugLineFragment.h => DebugLinesSub [...] rename include/llvm/DebugInfo/CodeView/{ModuleDebugFragment.h => DebugSubsection.h} (59%) rename include/llvm/DebugInfo/CodeView/{ModuleDebugFragmentRecord.h => DebugSubsec [...] rename include/llvm/DebugInfo/CodeView/{ModuleDebugFragmentVisitor.h => DebugSubse [...] rename include/llvm/DebugInfo/CodeView/{ModuleDebugUnknownFragment.h => DebugUnkno [...] rename lib/DebugInfo/CodeView/{ModuleDebugFileChecksumFragment.cpp => DebugChecksu [...] rename lib/DebugInfo/CodeView/{ModuleDebugInlineeLinesFragment.cpp => DebugInlinee [...] rename lib/DebugInfo/CodeView/{ModuleDebugLineFragment.cpp => DebugLinesSubsection [...] rename lib/DebugInfo/CodeView/{ModuleDebugFragment.cpp => DebugSubsection.cpp} (55%) create mode 100644 lib/DebugInfo/CodeView/DebugSubsectionRecord.cpp create mode 100644 lib/DebugInfo/CodeView/DebugSubsectionVisitor.cpp delete mode 100644 lib/DebugInfo/CodeView/ModuleDebugFragmentRecord.cpp delete mode 100644 lib/DebugInfo/CodeView/ModuleDebugFragmentVisitor.cpp