This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 59c422424e7 AMDGPU/GlobalISel: Fix G_GEP with mixed SGPR/VGPR operands new 2c307d94948 Use --defsym instead of sed in a test. NFC new 34535379435 [NFC][Codegen][X86][AArch64][ARM][PowerPC] Add test coverag [...] new ce64e4118fc GlobalISel: Define GINodeEquiv for G_UMULH/G_SMULH
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: .../llvm/Target/GlobalISel/SelectionDAGCompat.td | 2 + test/CodeGen/AArch64/inc-of-add.ll | 100 ++++ test/CodeGen/AArch64/sub-of-not.ll | 95 ++++ .../AMDGPU/GlobalISel/inst-select-smulh.mir | 85 +++ .../AMDGPU/GlobalISel/inst-select-umulh.mir | 85 +++ test/CodeGen/ARM/inc-of-add.ll | 569 +++++++++++++++++++++ test/CodeGen/ARM/sub-of-not.ll | 534 +++++++++++++++++++ test/CodeGen/PowerPC/inc-of-add.ll | 446 ++++++++++++++++ test/CodeGen/PowerPC/sub-of-not.ll | 427 ++++++++++++++++ test/CodeGen/X86/inc-of-add.ll | 147 ++++++ test/CodeGen/X86/sub-of-not.ll | 151 ++++++ test/DebugInfo/X86/dwarfdump-header-64.s | 62 ++- 12 files changed, 2681 insertions(+), 22 deletions(-) create mode 100644 test/CodeGen/AArch64/inc-of-add.ll create mode 100644 test/CodeGen/AArch64/sub-of-not.ll create mode 100644 test/CodeGen/AMDGPU/GlobalISel/inst-select-smulh.mir create mode 100644 test/CodeGen/AMDGPU/GlobalISel/inst-select-umulh.mir create mode 100644 test/CodeGen/ARM/inc-of-add.ll create mode 100644 test/CodeGen/ARM/sub-of-not.ll create mode 100644 test/CodeGen/PowerPC/inc-of-add.ll create mode 100644 test/CodeGen/PowerPC/sub-of-not.ll create mode 100644 test/CodeGen/X86/inc-of-add.ll create mode 100644 test/CodeGen/X86/sub-of-not.ll