This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from c2b0f90df1f [X86][Btver2] Fix YMM shuffle, permute and permutevar sched [...] new cad9f50df38 [mips] Add support for CRC ASE
The 1 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/Support/MipsABIFlags.h | 3 +- lib/Target/Mips/AsmParser/MipsAsmParser.cpp | 77 ++++++++++++++++++++++ lib/Target/Mips/Disassembler/MipsDisassembler.cpp | 20 ++++++ lib/Target/Mips/MCTargetDesc/MipsABIFlagsSection.h | 2 + .../Mips/MCTargetDesc/MipsTargetStreamer.cpp | 22 +++++++ lib/Target/Mips/Mips.td | 2 + lib/Target/Mips/Mips32r6InstrFormats.td | 15 +++++ lib/Target/Mips/Mips32r6InstrInfo.td | 32 +++++++++ lib/Target/Mips/Mips64r6InstrInfo.td | 10 +++ lib/Target/Mips/MipsInstrInfo.td | 6 ++ lib/Target/Mips/MipsSchedule.td | 18 ++++- lib/Target/Mips/MipsSubtarget.cpp | 2 +- lib/Target/Mips/MipsSubtarget.h | 4 ++ lib/Target/Mips/MipsTargetStreamer.h | 8 +++ test/MC/Disassembler/Mips/crc/valid-32r6-el.txt | 9 +++ test/MC/Disassembler/Mips/crc/valid-32r6.txt | 9 +++ test/MC/Disassembler/Mips/crc/valid-64r6-el.txt | 11 ++++ test/MC/Disassembler/Mips/crc/valid-64r6.txt | 11 ++++ test/MC/Mips/crc/invalid.s | 65 ++++++++++++++++++ test/MC/Mips/crc/invalid64.s | 24 +++++++ test/MC/Mips/crc/module-crc.s | 22 +++++++ test/MC/Mips/crc/module-nocrc.s | 21 ++++++ test/MC/Mips/crc/set-crc-directive.s | 7 ++ test/MC/Mips/crc/set-nocrc-directive.s | 9 +++ test/MC/Mips/crc/valid.s | 12 ++++ test/MC/Mips/crc/valid64.s | 6 ++ tools/llvm-readobj/ELFDumper.cpp | 3 +- 27 files changed, 426 insertions(+), 4 deletions(-) create mode 100644 test/MC/Disassembler/Mips/crc/valid-32r6-el.txt create mode 100644 test/MC/Disassembler/Mips/crc/valid-32r6.txt create mode 100644 test/MC/Disassembler/Mips/crc/valid-64r6-el.txt create mode 100644 test/MC/Disassembler/Mips/crc/valid-64r6.txt create mode 100644 test/MC/Mips/crc/invalid.s create mode 100644 test/MC/Mips/crc/invalid64.s create mode 100644 test/MC/Mips/crc/module-crc.s create mode 100644 test/MC/Mips/crc/module-nocrc.s create mode 100644 test/MC/Mips/crc/set-crc-directive.s create mode 100644 test/MC/Mips/crc/set-nocrc-directive.s create mode 100644 test/MC/Mips/crc/valid.s create mode 100644 test/MC/Mips/crc/valid64.s