This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from a70a8a0aa7a ScalarEvolution: Add URem support new 502fd5ddfab [DWARF] NFC: DWARFDataExtractor combines relocs with DataEx [...]
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: .../llvm/DebugInfo/DWARF/DWARFAcceleratorTable.h | 11 ++--- include/llvm/DebugInfo/DWARF/DWARFCompileUnit.h | 4 +- include/llvm/DebugInfo/DWARF/DWARFContext.h | 6 --- include/llvm/DebugInfo/DWARF/DWARFDataExtractor.h | 48 ++++++++++++++++++ include/llvm/DebugInfo/DWARF/DWARFDebugInfoEntry.h | 4 +- include/llvm/DebugInfo/DWARF/DWARFDebugLine.h | 13 ++--- include/llvm/DebugInfo/DWARF/DWARFDebugLoc.h | 11 ++--- include/llvm/DebugInfo/DWARF/DWARFDebugRangeList.h | 4 +- include/llvm/DebugInfo/DWARF/DWARFFormValue.h | 11 ++--- include/llvm/DebugInfo/DWARF/DWARFTypeUnit.h | 2 +- include/llvm/DebugInfo/DWARF/DWARFUnit.h | 19 ++++---- lib/DebugInfo/DWARF/CMakeLists.txt | 1 + lib/DebugInfo/DWARF/DWARFAcceleratorTable.cpp | 3 +- lib/DebugInfo/DWARF/DWARFContext.cpp | 57 +++++++++------------- lib/DebugInfo/DWARF/DWARFDataExtractor.cpp | 24 +++++++++ lib/DebugInfo/DWARF/DWARFDebugInfoEntry.cpp | 4 +- lib/DebugInfo/DWARF/DWARFDebugLine.cpp | 22 ++++----- lib/DebugInfo/DWARF/DWARFDebugLoc.cpp | 8 +-- lib/DebugInfo/DWARF/DWARFDebugRangeList.cpp | 11 ++--- lib/DebugInfo/DWARF/DWARFDie.cpp | 2 +- lib/DebugInfo/DWARF/DWARFFormValue.cpp | 19 +++----- lib/DebugInfo/DWARF/DWARFUnit.cpp | 32 ++++++------ lib/DebugInfo/DWARF/DWARFVerifier.cpp | 7 ++- tools/dsymutil/DwarfLinker.cpp | 23 ++++----- unittests/DebugInfo/DWARF/DWARFFormValueTest.cpp | 8 +-- 25 files changed, 194 insertions(+), 160 deletions(-) create mode 100644 include/llvm/DebugInfo/DWARF/DWARFDataExtractor.h create mode 100644 lib/DebugInfo/DWARF/DWARFDataExtractor.cpp