This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gnu_cross_build/master-aarch64 in repository toolchain/ci/gcc.
from e11c6046f9c Daily bump. adds 6e16b2123dd Revert "MIPS: add .module mipsREV to all output asm file" adds f482bf2af86 tree-optimization/102155 - fix LIM fill_always_executed_in [...] adds e42d2d2a20f Update hf soft-fp from glibc. adds 7cbc870c495 Enable _Float16 type for TARGET_SSE2 and above. adds b387e664cfa libgcc: Enable hfmode soft-sf/df/xf/tf extensions and truncations.
No new revisions were added by this update.
Summary of changes: gcc/config/i386/i386-modes.def | 1 + gcc/config/i386/i386.c | 91 ++++++++++++++++- gcc/config/i386/i386.h | 3 +- gcc/config/i386/i386.md | 118 ++++++++++++++++++++- gcc/config/mips/mips.c | 41 -------- gcc/doc/extend.texi | 13 +++ gcc/lto/lto-lang.c | 3 + gcc/testsuite/gcc.target/i386/float16-5.c | 12 +++ gcc/testsuite/gcc.target/i386/sse2-float16-1.c | 8 ++ gcc/testsuite/gcc.target/i386/sse2-float16-2.c | 16 +++ gcc/testsuite/gcc.target/i386/sse2-float16-3.c | 12 +++ gcc/tree-ssa-loop-im.c | 136 +++++++++++++------------ libgcc/config.host | 5 +- libgcc/config/i386/32/sfp-machine.h | 1 + libgcc/config/i386/64/sfp-machine.h | 1 + libgcc/config/i386/64/t-softfp | 1 + libgcc/config/i386/sfp-machine.h | 1 + libgcc/config/i386/t-softfp | 5 + libgcc/soft-fp/eqhf2.c | 49 +++++++++ libgcc/soft-fp/extendhfdf2.c | 53 ++++++++++ libgcc/soft-fp/extendhfsf2.c | 49 +++++++++ libgcc/soft-fp/half.h | 1 + libgcc/soft-fp/truncdfhf2.c | 52 ++++++++++ libgcc/soft-fp/truncsfhf2.c | 48 +++++++++ 24 files changed, 604 insertions(+), 116 deletions(-) create mode 100644 gcc/testsuite/gcc.target/i386/float16-5.c create mode 100644 gcc/testsuite/gcc.target/i386/sse2-float16-1.c create mode 100644 gcc/testsuite/gcc.target/i386/sse2-float16-2.c create mode 100644 gcc/testsuite/gcc.target/i386/sse2-float16-3.c create mode 100644 libgcc/config/i386/64/t-softfp create mode 100644 libgcc/soft-fp/eqhf2.c create mode 100644 libgcc/soft-fp/extendhfdf2.c create mode 100644 libgcc/soft-fp/extendhfsf2.c create mode 100644 libgcc/soft-fp/truncdfhf2.c create mode 100644 libgcc/soft-fp/truncsfhf2.c