This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from faddb71dd9f [demangler] call terminate() if allocation failed new 073f01b8db4 [LTO] Handle __imp_ (dllimport) symbols consistently with lld new 3e597f45e6c [DWARF v5] Refactor range lists dumping by using a more gen [...]
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: include/llvm/DebugInfo/DWARF/DWARFDebugRnglists.h | 116 ++------- include/llvm/DebugInfo/DWARF/DWARFListTable.h | 278 +++++++++++++++++++++ lib/DebugInfo/DWARF/CMakeLists.txt | 1 + lib/DebugInfo/DWARF/DWARFDebugRnglists.cpp | 210 ++-------------- lib/DebugInfo/DWARF/DWARFListTable.cpp | 109 ++++++++ lib/DebugInfo/DWARF/DWARFUnit.cpp | 2 +- lib/LTO/LTO.cpp | 9 +- test/DebugInfo/X86/fission-ranges.ll | 4 +- test/LTO/X86/Inputs/dllimport.ll | 17 ++ test/LTO/X86/dllimport.ll | 30 +++ test/tools/llvm-dwarfdump/X86/debug_rnglists.s | 36 +-- .../llvm-dwarfdump/X86/debug_rnglists_invalid.s | 16 +- 12 files changed, 515 insertions(+), 313 deletions(-) create mode 100644 include/llvm/DebugInfo/DWARF/DWARFListTable.h create mode 100644 lib/DebugInfo/DWARF/DWARFListTable.cpp create mode 100644 test/LTO/X86/Inputs/dllimport.ll create mode 100644 test/LTO/X86/dllimport.ll