This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from aa9211b [SelectionDAG] Add support for vector demandedelts in BSWAP opcodes new 9035357 [SystemZ] Use LLGT(R) instructions new 864946f [SystemZ] Support load-and-zero-rightmost-byte facility new 93f9010 [SystemZ] Support CL(G)T instructions
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: lib/Target/SystemZ/SystemZElimCompare.cpp | 14 +- lib/Target/SystemZ/SystemZFeatures.td | 6 + lib/Target/SystemZ/SystemZISelDAGToDAG.cpp | 86 ++++--- lib/Target/SystemZ/SystemZInstrFormats.td | 25 ++ lib/Target/SystemZ/SystemZInstrInfo.cpp | 12 + lib/Target/SystemZ/SystemZInstrInfo.td | 33 +++ lib/Target/SystemZ/SystemZScheduleZ13.td | 11 +- lib/Target/SystemZ/SystemZScheduleZ196.td | 4 +- lib/Target/SystemZ/SystemZScheduleZEC12.td | 5 +- lib/Target/SystemZ/SystemZSubtarget.cpp | 7 +- lib/Target/SystemZ/SystemZSubtarget.h | 6 + .../SystemZ/{int-conv-10.ll => int-conv-12.ll} | 110 ++++---- test/CodeGen/SystemZ/int-conv-13.ll | 278 +++++++++++++++++++++ test/CodeGen/SystemZ/trap-02.ll | 90 +++++++ test/MC/Disassembler/SystemZ/insns-z13.txt | 90 +++++++ test/MC/Disassembler/SystemZ/insns.txt | 123 +++++++++ test/MC/SystemZ/insn-bad-z13.s | 24 ++ test/MC/SystemZ/insn-bad-zEC12.s | 50 ++++ test/MC/SystemZ/insn-bad.s | 8 + test/MC/SystemZ/insn-good-z13.s | 66 +++++ test/MC/SystemZ/insn-good-zEC12.s | 64 +++++ test/MC/SystemZ/insn-good.s | 30 +++ 22 files changed, 1045 insertions(+), 97 deletions(-) copy test/CodeGen/SystemZ/{int-conv-10.ll => int-conv-12.ll} (54%) create mode 100644 test/CodeGen/SystemZ/int-conv-13.ll create mode 100644 test/CodeGen/SystemZ/trap-02.ll