This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 94eec101b38 [MC] Fix constant pools with DenseMap sentinel values new 903a50124a2 [SystemZ] Add missing assembler/disassembler tests new 002ef9b8478 [SystemZ] Add hexadecimal floating-point instructions new ccbe1071488 [SystemZ] Add decimal floating-point 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/SystemZ.td | 2 + lib/Target/SystemZ/SystemZFeatures.td | 14 +- lib/Target/SystemZ/SystemZInstrDFP.td | 231 ++ lib/Target/SystemZ/SystemZInstrFP.td | 19 +- lib/Target/SystemZ/SystemZInstrFormats.td | 97 +- lib/Target/SystemZ/SystemZInstrHFP.td | 240 ++ lib/Target/SystemZ/SystemZScheduleZ13.td | 232 ++ lib/Target/SystemZ/SystemZScheduleZ196.td | 219 ++ lib/Target/SystemZ/SystemZScheduleZEC12.td | 225 ++ lib/Target/SystemZ/SystemZSubtarget.cpp | 2 + lib/Target/SystemZ/SystemZSubtarget.h | 8 + test/MC/Disassembler/SystemZ/insns-z13.txt | 108 + test/MC/Disassembler/SystemZ/insns.txt | 3260 +++++++++++++++++++++++++++- test/MC/SystemZ/insn-bad-z13.s | 146 ++ test/MC/SystemZ/insn-bad-z196.s | 368 ++++ test/MC/SystemZ/insn-bad-zEC12.s | 166 ++ test/MC/SystemZ/insn-bad.s | 998 +++++++++ test/MC/SystemZ/insn-good-z13.s | 80 + test/MC/SystemZ/insn-good-z196.s | 336 +++ test/MC/SystemZ/insn-good-zEC12.s | 80 + test/MC/SystemZ/insn-good.s | 2135 ++++++++++++++++++ 21 files changed, 8905 insertions(+), 61 deletions(-) create mode 100644 lib/Target/SystemZ/SystemZInstrDFP.td create mode 100644 lib/Target/SystemZ/SystemZInstrHFP.td