This is an automated email from the git hooks/post-receive script.
"tcwg-buildslave pushed a change to branch linaro-local/ci/llvm-kernel-aarch64-tested in repository toolchain/llvm/llvm.
from 3a4d2d38bf8 [ARM/AArch64] TargetParserTest fixes adds c30814805cc [ARM/AArch64] Support FP16 +fp16fml instructions adds aec303a986c [InstCombine] Remove unused method FAddCombine::createFDiv(). NFC
No new revisions were added by this update.
Summary of changes: include/llvm/Support/AArch64TargetParser.def | 1 + include/llvm/Support/ARMTargetParser.def | 1 + include/llvm/Support/TargetParser.h | 2 + lib/Support/TargetParser.cpp | 7 ++ lib/Target/AArch64/AArch64.td | 3 + lib/Target/AArch64/AArch64InstrFormats.td | 22 ++++ lib/Target/AArch64/AArch64InstrInfo.td | 20 +++ lib/Target/AArch64/AArch64Subtarget.h | 2 + lib/Target/ARM/ARM.td | 5 + lib/Target/ARM/ARMInstrFormats.td | 31 +++++ lib/Target/ARM/ARMInstrInfo.td | 2 + lib/Target/ARM/ARMInstrNEON.td | 48 +++++++ lib/Target/ARM/ARMSubtarget.h | 4 + lib/Target/ARM/ARMTargetTransformInfo.h | 2 +- lib/Target/ARM/AsmParser/ARMAsmParser.cpp | 6 +- lib/Transforms/InstCombine/InstCombineAddSub.cpp | 8 -- test/MC/AArch64/armv8a-fpmul-error.s | 51 ++++++++ test/MC/AArch64/armv8a-fpmul.s | 147 ++++++++++++++++++++++ test/MC/ARM/armv8a-fpmul-error.s | 27 ++++ test/MC/ARM/armv8a-fpmul.s | 92 ++++++++++++++ test/MC/Disassembler/AArch64/armv8a-fpmul-err.txt | 118 +++++++++++++++++ test/MC/Disassembler/AArch64/armv8a-fpmul.txt | 64 ++++++++++ test/MC/Disassembler/ARM/armv8a-fpmul-a32.txt | 78 ++++++++++++ test/MC/Disassembler/ARM/armv8a-fpmul-t32.txt | 68 ++++++++++ unittests/Support/TargetParserTest.cpp | 25 +++- 25 files changed, 821 insertions(+), 13 deletions(-) create mode 100644 test/MC/AArch64/armv8a-fpmul-error.s create mode 100644 test/MC/AArch64/armv8a-fpmul.s create mode 100644 test/MC/ARM/armv8a-fpmul-error.s create mode 100644 test/MC/ARM/armv8a-fpmul.s create mode 100644 test/MC/Disassembler/AArch64/armv8a-fpmul-err.txt create mode 100644 test/MC/Disassembler/AArch64/armv8a-fpmul.txt create mode 100644 test/MC/Disassembler/ARM/armv8a-fpmul-a32.txt create mode 100644 test/MC/Disassembler/ARM/armv8a-fpmul-t32.txt