This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 334d2239fad [AMDGPU][MC] Corrected parsing of image opcode modifiers r1 [...] new 4cd1837737e [NFC] Refactor Apple Accelerator Tables new 633599ba035 [NFC] Rename DwarfAccelTable and move header. new a9aab590d53 [dsymutil] Generate Apple accelerator tables
The 3 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/CodeGen/AccelTable.h | 473 +++++++++++++++++++++ lib/CodeGen/AsmPrinter/AccelTable.cpp | 235 ++++++++++ lib/CodeGen/AsmPrinter/CMakeLists.txt | 2 +- lib/CodeGen/AsmPrinter/DwarfAccelTable.cpp | 293 ------------- lib/CodeGen/AsmPrinter/DwarfAccelTable.h | 262 ------------ lib/CodeGen/AsmPrinter/DwarfDebug.cpp | 32 +- lib/CodeGen/AsmPrinter/DwarfDebug.h | 15 +- test/tools/dsymutil/Inputs/objc.macho.x86_64 | Bin 0 -> 9736 bytes test/tools/dsymutil/Inputs/objc.macho.x86_64.o | Bin 0 -> 7788 bytes test/tools/dsymutil/X86/basic-lto-linking-x86.test | 195 ++++++++- test/tools/dsymutil/X86/objc.test | 52 +++ tools/dsymutil/DwarfLinker.cpp | 366 +++++++++++++--- tools/dsymutil/dsymutil.h | 3 + 13 files changed, 1294 insertions(+), 634 deletions(-) create mode 100644 include/llvm/CodeGen/AccelTable.h create mode 100644 lib/CodeGen/AsmPrinter/AccelTable.cpp delete mode 100644 lib/CodeGen/AsmPrinter/DwarfAccelTable.cpp delete mode 100644 lib/CodeGen/AsmPrinter/DwarfAccelTable.h create mode 100755 test/tools/dsymutil/Inputs/objc.macho.x86_64 create mode 100644 test/tools/dsymutil/Inputs/objc.macho.x86_64.o create mode 100644 test/tools/dsymutil/X86/objc.test