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-stable-allnoconfig in repository toolchain/ci/gcc.
from 6e814eeea3e Fix typo in m4/druntime/cpu.m4 adds 0eee1ea04c1 PR tree-optimization/90037 * Makefile.in (OBJS): Remove t [...] adds d6a738923db 2019-04-25 Richard Biener rguenther@suse.de adds ac07a0984a3 libphobos: Fix segfault in runtime caused by unexpected GC [...] adds 760cb209d81 x86: Update message for target_clones and unsupported ISAs adds 6977c762966 PR middle-end/89765 * gimplify.c (gimplify_expr): Avoid t [...] adds 70f448fa534 * BASE-VER: Set to 10.0.0. adds c487d6a8179 * doc/extend.texi (vector_size): Add missing comma after @xref. adds 365ada71ff5 2019-04-25 Andreas Tobler andreast@gcc.gnu.org adds f0a82465816 PR libstdc++/90239 use uses_allocator_construction_args in [...] adds a3f3216f8c2 Daily bump. adds d01c8f9b65f Add commentary to (SET_)TYPE_VECTOR_SUBPARTS adds 8bbdcaf0f18 Fix use of COMPLETE_TYPE_P for -Wstrict-aliasing=1 adds db1349a6df1 * config/abi/post/x86_64-linux-gnu/baseline_symbols.txt: U [...] adds 2ed13d1a49d /cp 2018-04-26 Paolo Carlini paolo.carlini@oracle.com adds dd693c4a934 * config/abi/post/s390x-linux-gnu/32/baseline_symbols.txt: [...] adds 051e444d264 Tweak C++2a uses-allocator construction utilities new 46933618359 Reduce code instantiated by filesystem::path::_S_convert_loc
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: gcc/BASE-VER | 2 +- gcc/ChangeLog | 54 ++ gcc/DATESTAMP | 2 +- gcc/Makefile.in | 1 - gcc/c-family/ChangeLog | 5 + gcc/c-family/c-warn.c | 2 +- gcc/config.gcc | 5 +- gcc/config/i386/freebsd64.h | 5 +- gcc/config/i386/i386.c | 490 +++++++++-------- gcc/config/i386/t-freebsd64 | 30 ++ gcc/cp/ChangeLog | 5 + gcc/cp/decl.c | 4 +- gcc/doc/extend.texi | 4 +- gcc/gimplify.c | 3 +- gcc/passes.def | 27 +- gcc/testsuite/ChangeLog | 25 + gcc/testsuite/g++.dg/diagnostic/trailing1.C | 5 + gcc/testsuite/g++.target/i386/mv28.C | 26 + gcc/testsuite/g++.target/i386/pr57362.C | 2 +- gcc/testsuite/gcc.dg/alias-16.c | 46 ++ gcc/testsuite/gcc.dg/pr90037.c | 161 ++++++ gcc/testsuite/gcc.dg/tree-ssa/20030710-1.c | 10 +- gcc/testsuite/gcc.dg/tree-ssa/isolate-2.c | 6 +- gcc/testsuite/gcc.dg/tree-ssa/isolate-4.c | 4 +- gcc/testsuite/gcc.dg/tree-ssa/pr19431.c | 2 +- gcc/testsuite/gcc.target/i386/mvc14.c | 16 + gcc/timevar.def | 1 - gcc/tree-pass.h | 1 - gcc/tree-ssa-phionlycprop.c | 580 --------------------- gcc/tree.h | 17 + libphobos/ChangeLog | 8 + libphobos/libdruntime/gcc/sections/elf_shared.d | 8 +- libphobos/testsuite/libphobos.thread/thread.exp | 2 + .../testsuite/libphobos.thread/tlsgc_sections.d | 39 ++ libstdc++-v3/ChangeLog | 44 ++ .../post/aarch64-linux-gnu/baseline_symbols.txt | 434 +++++++++++++++ .../abi/post/i386-linux-gnu/baseline_symbols.txt | 434 +++++++++++++++ .../abi/post/i486-linux-gnu/baseline_symbols.txt | 434 +++++++++++++++ .../post/powerpc-linux-gnu/baseline_symbols.txt | 434 +++++++++++++++ .../powerpc64-linux-gnu/32/baseline_symbols.txt | 434 +++++++++++++++ .../post/powerpc64-linux-gnu/baseline_symbols.txt | 434 +++++++++++++++ .../abi/post/s390-linux-gnu/baseline_symbols.txt | 425 +++++++++++++++ .../post/s390x-linux-gnu/32/baseline_symbols.txt | 425 +++++++++++++++ .../abi/post/s390x-linux-gnu/baseline_symbols.txt | 425 +++++++++++++++ .../post/x86_64-linux-gnu/32/baseline_symbols.txt | 434 +++++++++++++++ .../abi/post/x86_64-linux-gnu/baseline_symbols.txt | 434 +++++++++++++++ libstdc++-v3/config/abi/pre/gnu.ver | 3 +- libstdc++-v3/doc/xml/manual/status_cxx2020.xml | 4 +- libstdc++-v3/include/bits/fs_path.h | 2 +- libstdc++-v3/include/bits/locale_conv.h | 10 +- libstdc++-v3/include/std/memory | 6 +- libstdc++-v3/include/std/scoped_allocator | 21 + .../polymorphic_allocator/construct_c++2a.cc | 51 ++ .../scoped_allocator/construct_pair_c++2a.cc | 99 ++++ libstdc++-v3/testsuite/util/testsuite_allocator.h | 2 +- 55 files changed, 5697 insertions(+), 890 deletions(-) create mode 100644 gcc/config/i386/t-freebsd64 create mode 100644 gcc/testsuite/g++.dg/diagnostic/trailing1.C create mode 100644 gcc/testsuite/g++.target/i386/mv28.C create mode 100644 gcc/testsuite/gcc.dg/alias-16.c create mode 100644 gcc/testsuite/gcc.dg/pr90037.c create mode 100644 gcc/testsuite/gcc.target/i386/mvc14.c delete mode 100644 gcc/tree-ssa-phionlycprop.c create mode 100644 libphobos/testsuite/libphobos.thread/tlsgc_sections.d create mode 100644 libstdc++-v3/testsuite/20_util/scoped_allocator/construct_pair_ [...]