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-next-defconfig in repository toolchain/ci/gcc.
from 615452162a9 Daily bump. adds 0e4fb591aff [PR 91579] Avoid creating redundant PHI nodes in tail-call pass adds 122f262a8cb 2019-08-30 Bernd Edlinger bernd.edlinger@hotmail.de adds d8970a501e5 * gcc-interface/gigi.h (gigi_checking_assert): New macro. [...] adds 9ea6b8369d5 PR libstdc++/89164 enforce constraints for uninitialized algos adds 0e3d44a8641 * doc/invoke.texi (-Wvolatile): Use @code for volatile. adds 2655211d6a7 * gcc-interface/trans.c (Attribute_to_gnu) <Attr_Size>: Ad [...] adds 3dbaec5afd5 * gcc-interface/decl.c (annotate_value) <CALL_EXPR>: Inlin [...] adds 8cae88354ad * gcc-interface/utils.c (build_template): Deal with parame [...] adds 0375b2f5968 * gcc-interface/trans.c (lvalue_required_p) <N_Slice>: Adj [...] adds e2ddffae44f * gcc.target/mips/r10k-cache-barrier-9.c: Suppress warnings. adds 9b61bcc8f48 * gcc-interface/gigi.h (aggregate_type_contains_array_p): [...] adds 847c80704c7 * gcc-interface/trans.c (gnat_to_gnu): Do not set the loca [...] adds 3e8204d26ee * gcc-interface/ada-tree.h (DECL_FORCED_BY_REF_P): New mac [...] adds ae1df2360c5 * config/abi/post/alpha-linux-gnu/baseline_symbols.txt: Update. adds b6db0e1cae8 * gcc-interface/decl.c (maybe_saturate_size): New function [...] adds 1cd8d420633 Fix errors in new test adds 6965df15fd2 Optimize std::to_chars adds 2084eeb84e3 PR middle-end/91584 - Bogus warning from -Warray-bounds dur [...] adds 73fa7185ea9 PR middle-end/91599 - GCC does not say where warning is happening adds 39a2733823d Fix ChangeLog adds 3888d1c5724 compile, runtime: permit anonymous and empty fields in [...] new 3694974d65e RISC-V: Disable -msave-restore for shared libraries. new b08b2a5e58b Daily bump. new c6fd6a9f1cb 2019-08-30 Steven G. Kargl kargl@gcc.gnu.org
The 3 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/ChangeLog | 41 ++++ gcc/DATESTAMP | 2 +- gcc/ada/ChangeLog | 74 +++++++ gcc/ada/gcc-interface/ada-tree.h | 3 + gcc/ada/gcc-interface/decl.c | 117 +++++------ gcc/ada/gcc-interface/gigi.h | 13 +- gcc/ada/gcc-interface/trans.c | 222 +++++++------------- gcc/ada/gcc-interface/utils.c | 98 +++++---- gcc/config/arm/arm.c | 19 +- gcc/config/arm/arm.md | 22 ++ gcc/config/arm/neon.md | 10 + gcc/config/riscv/riscv.c | 10 + gcc/doc/invoke.texi | 15 +- gcc/fortran/ChangeLog | 5 + gcc/fortran/io.c | 2 +- gcc/gimple-pretty-print.c | 6 +- gcc/go/gofrontend/MERGE | 2 +- gcc/go/gofrontend/gogo.cc | 4 +- gcc/go/gofrontend/types.cc | 11 +- gcc/testsuite/ChangeLog | 26 +++ gcc/testsuite/gcc.dg/Wstringop-overflow-16.c | 21 ++ gcc/testsuite/gcc.dg/tree-ssa/pr91579.c | 22 ++ .../gcc.target/mips/r10k-cache-barrier-9.c | 2 +- .../gfortran.dg/char_array_constructor_4.f90 | 13 ++ gcc/testsuite/gfortran.dg/pr91587.f90 | 12 ++ gcc/testsuite/gnat.dg/pack24.adb | 38 ++++ gcc/tree-ssa-strlen.c | 5 + gcc/tree-tailcall.c | 48 ++--- gcc/tree-vrp.c | 23 +-- libgo/go/reflect/makefunc_ffi_c.c | 1 - libgo/mkruntimeinc.sh | 8 +- libgo/runtime/go-construct-map.c | 15 +- libgo/runtime/go-fieldtrack.c | 4 +- libgo/runtime/go-reflect-call.c | 80 ++++--- libgo/runtime/go-type.h | 229 --------------------- libgo/runtime/go-unsafe-pointer.c | 69 ++++--- libgo/runtime/print.c | 1 - libgo/runtime/proc.c | 1 - libgo/runtime/runtime.h | 20 +- libstdc++-v3/ChangeLog | 43 +++- .../abi/post/alpha-linux-gnu/baseline_symbols.txt | 5 + libstdc++-v3/include/bits/stl_algobase.h | 2 +- libstdc++-v3/include/bits/stl_uninitialized.h | 24 ++- libstdc++-v3/include/std/charconv | 71 ++++--- .../specialized_algorithms/uninitialized_copy/1.cc | 2 +- .../uninitialized_copy/{1.cc => 89164.cc} | 27 +-- .../1.cc => uninitialized_copy_n/89164.cc} | 26 ++- .../1.cc => uninitialized_fill/89164.cc} | 26 ++- .../1.cc => uninitialized_fill_n/89164.cc} | 26 ++- .../1.cc => 23_containers/vector/cons/89164.cc} | 29 +-- .../23_containers/vector/cons/89164_c++17.cc | 50 +++++ 51 files changed, 890 insertions(+), 755 deletions(-) create mode 100644 gcc/testsuite/gcc.dg/Wstringop-overflow-16.c create mode 100644 gcc/testsuite/gcc.dg/tree-ssa/pr91579.c create mode 100644 gcc/testsuite/gfortran.dg/char_array_constructor_4.f90 create mode 100644 gcc/testsuite/gfortran.dg/pr91587.f90 create mode 100644 gcc/testsuite/gnat.dg/pack24.adb delete mode 100644 libgo/runtime/go-type.h copy libstdc++-v3/testsuite/20_util/specialized_algorithms/uninitialized_copy/{1.c [...] copy libstdc++-v3/testsuite/20_util/specialized_algorithms/{uninitialized_copy/1.c [...] copy libstdc++-v3/testsuite/20_util/specialized_algorithms/{uninitialized_copy/1.c [...] copy libstdc++-v3/testsuite/20_util/specialized_algorithms/{uninitialized_copy/1.c [...] copy libstdc++-v3/testsuite/{20_util/specialized_algorithms/uninitialized_copy/1.c [...] create mode 100644 libstdc++-v3/testsuite/23_containers/vector/cons/89164_c++17.cc