This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 73941a95aa9 AMDGPU: Fix test failing since r365512 new 10f530a4538 [InstCombine] add tests for trunc(load); NFC new 785cf2e4b74 [Object][XCOFF] Add support for 64-bit file header and sect [...] new 0392724202d [AMDGPU] gfx908 target
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: docs/AMDGPUUsage.rst | 6 +- include/llvm/BinaryFormat/ELF.h | 1 + include/llvm/BinaryFormat/Magic.h | 1 + include/llvm/Object/Binary.h | 4 +- include/llvm/Object/ObjectFile.h | 2 +- include/llvm/Object/XCOFFObjectFile.h | 112 +++++- include/llvm/Support/TargetParser.h | 1 + lib/BinaryFormat/Magic.cpp | 2 + lib/Object/Binary.cpp | 1 + lib/Object/ObjectFile.cpp | 4 +- lib/Object/SymbolicFile.cpp | 1 + lib/Object/XCOFFObjectFile.cpp | 402 +++++++++++++-------- lib/ObjectYAML/ELFYAML.cpp | 1 + lib/Support/TargetParser.cpp | 4 +- lib/Target/AMDGPU/AMDGPU.td | 64 ++++ lib/Target/AMDGPU/AMDGPUSubtarget.cpp | 5 + lib/Target/AMDGPU/AMDGPUSubtarget.h | 25 ++ lib/Target/AMDGPU/GCNProcessors.td | 4 + .../AMDGPU/MCTargetDesc/AMDGPUTargetStreamer.cpp | 2 + test/CodeGen/AMDGPU/elf-header-flags-mach.ll | 3 + test/CodeGen/AMDGPU/elf-header-flags-sram-ecc.ll | 7 + test/CodeGen/AMDGPU/hsa-note-no-func.ll | 2 + test/MC/AMDGPU/dl-insts.s | 1 + test/MC/Disassembler/AMDGPU/dl-insts.txt | 1 + test/Object/AMDGPU/elf-header-flags-mach.yaml | 27 +- test/Transforms/InstCombine/trunc-load.ll | 73 ++++ test/tools/llvm-readobj/Inputs/xcoff-basic-64.o | Bin 0 -> 2541 bytes test/tools/llvm-readobj/xcoff-basic.test | 17 + test/tools/llvm-readobj/xcoff-sections.test | 164 +++++++++ tools/llvm-readobj/ELFDumper.cpp | 1 + tools/llvm-readobj/XCOFFDumper.cpp | 83 ++++- tools/obj2yaml/xcoff2yaml.cpp | 27 +- 32 files changed, 854 insertions(+), 194 deletions(-) create mode 100644 test/Transforms/InstCombine/trunc-load.ll create mode 100644 test/tools/llvm-readobj/Inputs/xcoff-basic-64.o create mode 100644 test/tools/llvm-readobj/xcoff-sections.test