This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_kernel/gnu-master-arm-mainline-allmodconfig in repository toolchain/gcc.
from e4ab4c64145 * tree.c (fld_type_variant): Also copy alignment; be sure [...] adds 521c7eaf2b7 Fix D compilation on Solaris adds c4bd9019a01 * tree.c (fld_simplified_type_name): Break out form ... ( [...] adds 1ff58be654e 2018-11-06 Richard Biener rguenther@suse.de adds 1ce555a208b aarch64 - Set the mode for the unspec in speculation_tracker insn. adds b6b331448e9 2018-11-06 John Bytheway jbytheway@gmail.com adds c46e445b08c 2018-11-06 Aaron Sawdey acsawdey@linux.ibm.com adds 76b49a0858e Implement std::pmr::unsynchronized_pool_resource adds 60ff6a8a784 Daily bump. adds 198a0ce90f7 [PR87874] avoid const-wide-int subreg in LRA adds 3154f40272f 2018-11-07 Richard Biener rguenther@suse.de adds c1af8d58768 Add support for Loongson MMI instructions. adds 9ae8553d4ec Add support for Loongson EXT instructions. adds 14ae3f09b9b Add support for Loongson EXT2 instructions. adds 6df30e9ff18 Add support for Loongson 3A1000 processor. adds 4a232e4a577 Add support for Loongson 3A2000/3A3000 processor. adds 2551131a7b0 Add support for Loongson 2K1000 processor. adds 4d7911cc85c Fix GNU coding style (V2). adds fc018a4c8e4 Fix UBSAN in postreload-gcse.c (PR rtl-optimization/87868). adds bcbc4a13068 * tree.c (free_lang_data_in_type): Add fld parameter; simp [...] adds cf03d84b025 Fix some typo and brain twister logical. adds bd82677411e * tree.c (fld_type_variant_equal_p): Skip TYPE_ALIGN check [...] adds 7ed0697e8f2 2018-11-07 Richard Biener rguenther@suse.de adds 529ebc2a706 Update libquadmath fmaq from glibc, fix nanq issues.
No new revisions were added by this update.
Summary of changes: gcc/ChangeLog | 210 ++++++ gcc/DATESTAMP | 2 +- gcc/config.gcc | 4 +- gcc/config/aarch64/aarch64.md | 2 +- gcc/config/default-d.c | 1 + gcc/config/mips/gs264e.md | 133 ++++ gcc/config/mips/gs464.md | 137 ++++ gcc/config/mips/gs464e.md | 137 ++++ gcc/config/mips/{loongson.md => loongson-mmi.md} | 155 ++-- .../mips/{loongson.h => loongson-mmiintrin.h} | 15 +- gcc/config/mips/loongson.h | 669 +----------------- gcc/config/mips/loongson3a.md | 137 ---- gcc/config/mips/mips-cpus.def | 5 +- gcc/config/mips/mips-protos.h | 1 + gcc/config/mips/mips-tables.opt | 25 +- gcc/config/mips/mips.c | 71 +- gcc/config/mips/mips.h | 94 ++- gcc/config/mips/mips.md | 85 ++- gcc/config/mips/mips.opt | 14 +- gcc/config/rs6000/rs6000.md | 14 +- gcc/config/{glibc-d.c => sol2-d.c} | 33 +- gcc/config/t-sol2 | 7 +- gcc/doc/invoke.texi | 24 +- gcc/ipa-inline.c | 14 +- gcc/lra.c | 2 +- gcc/mem-stats.h | 22 +- gcc/postreload-gcse.c | 14 +- gcc/profile-count.h | 2 +- gcc/testsuite/ChangeLog | 63 ++ gcc/testsuite/g++.dg/lto/odr-1_1.C | 2 +- gcc/testsuite/g++.dg/lto/pr87906_0.C | 35 + gcc/testsuite/g++.dg/lto/pr87906_1.C | 23 + gcc/testsuite/gcc.dg/pr87874.c | 35 + gcc/testsuite/gcc.target/mips/loongson-ctz.c | 11 + gcc/testsuite/gcc.target/mips/loongson-dctz.c | 11 + .../mips/loongson-shift-count-truncated-1.c | 6 +- gcc/testsuite/gcc.target/mips/loongson-simd.c | 4 +- gcc/testsuite/gcc.target/mips/mips.exp | 13 + gcc/testsuite/lib/target-supports.exp | 47 +- gcc/tree-streamer-in.c | 6 + gcc/tree.c | 59 +- gcc/vec.h | 2 +- libquadmath/ChangeLog | 14 + libquadmath/math/fmaq.c | 82 +-- libquadmath/math/nanq.c | 6 +- libquadmath/printf/flt1282mpn.c | 12 +- libquadmath/printf/printf_fphex.c | 6 +- libquadmath/quadmath-imp.h | 26 +- libquadmath/strtod/mpn2flt128.c | 18 +- libquadmath/strtod/strtoflt128.c | 15 +- libquadmath/update-quadmath.py | 5 +- libstdc++-v3/ChangeLog | 38 + libstdc++-v3/config/abi/pre/gnu.ver | 9 + libstdc++-v3/include/debug/safe_sequence.tcc | 3 + libstdc++-v3/include/std/memory_resource | 105 ++- libstdc++-v3/src/c++17/Makefile.am | 5 + libstdc++-v3/src/c++17/Makefile.in | 5 + libstdc++-v3/src/c++17/memory_resource.cc | 786 ++++++++++++++++++++- .../unsynchronized_pool_resource/allocate.cc | 155 ++++ .../unsynchronized_pool_resource/is_equal.cc} | 17 +- .../options.cc} | 27 +- .../unsynchronized_pool_resource/release.cc | 113 +++ 62 files changed, 2623 insertions(+), 1170 deletions(-) create mode 100644 gcc/config/mips/gs264e.md create mode 100644 gcc/config/mips/gs464.md create mode 100644 gcc/config/mips/gs464e.md rename gcc/config/mips/{loongson.md => loongson-mmi.md} (88%) copy gcc/config/mips/{loongson.h => loongson-mmiintrin.h} (98%) delete mode 100644 gcc/config/mips/loongson3a.md copy gcc/config/{glibc-d.c => sol2-d.c} (58%) create mode 100644 gcc/testsuite/g++.dg/lto/pr87906_0.C create mode 100644 gcc/testsuite/g++.dg/lto/pr87906_1.C create mode 100644 gcc/testsuite/gcc.dg/pr87874.c create mode 100644 gcc/testsuite/gcc.target/mips/loongson-ctz.c create mode 100644 gcc/testsuite/gcc.target/mips/loongson-dctz.c create mode 100644 libstdc++-v3/testsuite/20_util/unsynchronized_pool_resource/all [...] copy libstdc++-v3/testsuite/{18_support/aligned_alloc/aligned_alloc.cc => 20_util/ [...] copy libstdc++-v3/testsuite/20_util/{function_objects/not_fn/87538.cc => unsynchro [...] create mode 100644 libstdc++-v3/testsuite/20_util/unsynchronized_pool_resource/release.cc