This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from bd60c64f32c [CVP] Handle instructions with no user. No need to create C [...] new d2dad5476b9 Revert "[DWARF] reposting r342048, which was reverted in r3 [...]
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/DWARF/DWARFContext.h | 4 +- include/llvm/DebugInfo/DWARF/DWARFDebugRangeList.h | 86 +++++++++++ include/llvm/DebugInfo/DWARF/DWARFDebugRnglists.h | 39 +---- include/llvm/DebugInfo/DWARF/DWARFListTable.h | 166 ++++++--------------- include/llvm/DebugInfo/DWARF/DWARFUnit.h | 7 + lib/DebugInfo/DWARF/CMakeLists.txt | 1 + lib/DebugInfo/DWARF/DWARFContext.cpp | 56 +++---- lib/DebugInfo/DWARF/DWARFDebugRangeList.cpp | 96 ++++++++++++ lib/DebugInfo/DWARF/DWARFDebugRnglists.cpp | 97 +++--------- lib/DebugInfo/DWARF/DWARFDie.cpp | 1 + lib/DebugInfo/DWARF/DWARFListTable.cpp | 72 +++------ lib/DebugInfo/DWARF/DWARFUnit.cpp | 99 ++++++------ test/DebugInfo/Generic/cu-ranges.ll | 24 +-- test/DebugInfo/Inputs/gmlt.ll | 2 +- test/DebugInfo/X86/dwarfdump-ranges-baseaddr.s | 19 --- test/DebugInfo/X86/dwarfdump-ranges-unrelocated.s | 11 +- test/DebugInfo/dwarfdump-ranges.test | 24 +-- test/MC/ARM/dwarf-asm-multiple-sections.s | 11 +- tools/dsymutil/DwarfLinker.cpp | 23 ++- tools/dsymutil/DwarfStreamer.cpp | 19 +-- tools/dsymutil/DwarfStreamer.h | 4 +- 21 files changed, 420 insertions(+), 441 deletions(-) create mode 100644 include/llvm/DebugInfo/DWARF/DWARFDebugRangeList.h create mode 100644 lib/DebugInfo/DWARF/DWARFDebugRangeList.cpp