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-lts-allmodconfig in repository toolchain/ci/gcc.
from f2e61afa978 Remove newly unused function and variable in tree-sra adds 3770798685c Colorize %L and %C text to match diagnostic_show_locus (PR [...] adds 77a61553001 aarch64: Fix store-exclusive in load-operate LSE helpers adds be929693864 aarch64: Configure for sys/auxv.h in libgcc for lse-init.c adds 650ec7f9cd1 libgcc: Rebuild autoconf files adds 1051624cfed Daily bump. adds daca651f3e3 [AArch64] Fix cost of (plus ... (const_int -C)) adds 7514a100bdf Add TODO_update_ssa for SLP BB vectorization (PR tree-optim [...] adds 74673e69a24 Add myself as aarch64 port maintainer adds ce83392b46e [PATCH] Fix continue condition in IPA-SRA's process_scan_results adds 6a59ea6fecc [PATCH] Fix quoting in a call to internal_error adds 9abe10e0a01 [arm] Update FP16 tests adds 856adc5dcb8 [arm] Implement non-GE-setting SIMD32 intrinsics adds 433c7595293 [arm] Implement DImode SIMD32 intrinsics adds 537fd9d4dca driver: Also prune joined switches with negation adds f92ea59a82b Add myself as an aarch64 maintainer adds d3dc2743ca4 2019-09-26 Richard Biener rguenther@suse.de adds 310252ecc20 * osint.adb (OS_Time_To_GNAT_Time): Remove dependency on T [...] new d00ba20dbd7 Remove include directives for deleted Profile Mode headers new b860dbe9791 Fix array index error in address_v6 comparisons new f875c1ba2b0 Implement C++20 constexpr changes to std::pair (P1032R1) new 563af6e4987 Define std::to_array for Debug Mode new 24cabdbe8f3 PR tree-optimization/91914 - Invalid strlen folding for off [...]
The 5 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: ChangeLog | 8 + MAINTAINERS | 3 +- gcc/ChangeLog | 77 +++++ gcc/DATESTAMP | 2 +- gcc/ada/ChangeLog | 4 + gcc/ada/osint.adb | 16 +- gcc/config/aarch64/aarch64.c | 2 +- gcc/config/aarch64/aarch64.opt | 6 +- gcc/config/arm/arm.md | 41 +++ gcc/config/arm/arm.opt | 6 +- gcc/config/arm/arm_acle.h | 261 +++++++++++++++++ gcc/config/arm/arm_acle_builtins.def | 37 +++ gcc/config/arm/iterators.md | 35 +++ gcc/config/arm/unspecs.md | 38 +++ gcc/doc/sourcebuild.texi | 7 + gcc/fortran/ChangeLog | 18 ++ gcc/fortran/error.c | 44 ++- gcc/ipa-sra.c | 4 +- gcc/testsuite/ChangeLog | 28 ++ gcc/testsuite/gcc.dg/pr91885.c | 47 +++ gcc/testsuite/gcc.dg/strlenopt-79.c | 46 +++ gcc/testsuite/gcc.target/arm/acle/simd32.c | 278 ++++++++++++++++++ gcc/testsuite/gcc.target/arm/fp16-compile-alt-3.c | 2 +- gcc/testsuite/gcc.target/arm/fp16-compile-ieee-3.c | 2 +- gcc/testsuite/lib/target-supports.exp | 39 +++ gcc/tree-vect-loop.c | 319 +++++++++++---------- gcc/tree-vectorizer.c | 3 +- gcc/tree-vectorizer.h | 8 + libgcc/ChangeLog | 15 + libgcc/config.in | 8 + libgcc/config/aarch64/lse-init.c | 4 +- libgcc/config/aarch64/lse.S | 4 +- libgcc/configure | 2 +- libgcc/configure.ac | 2 +- libstdc++-v3/ChangeLog | 28 ++ libstdc++-v3/include/bits/stl_pair.h | 24 +- libstdc++-v3/include/debug/array | 39 +++ libstdc++-v3/include/experimental/internet | 4 +- libstdc++-v3/include/std/array | 4 - libstdc++-v3/include/std/bitset | 4 - libstdc++-v3/include/std/deque | 4 - libstdc++-v3/include/std/forward_list | 4 - libstdc++-v3/include/std/list | 4 - libstdc++-v3/include/std/map | 4 - libstdc++-v3/include/std/set | 4 - libstdc++-v3/include/std/tuple | 4 +- libstdc++-v3/include/std/unordered_map | 4 - libstdc++-v3/include/std/unordered_set | 4 - libstdc++-v3/include/std/vector | 4 - .../17_intro/headers/c++1998/profile_mode.cc | 23 ++ .../17_intro/headers/c++2011/profile_mode.cc | 23 ++ .../testsuite/20_util/pair/constexpr_assign.cc | 39 +++ .../testsuite/20_util/pair/constexpr_swap.cc | 36 +++ 53 files changed, 1444 insertions(+), 232 deletions(-) create mode 100644 gcc/testsuite/gcc.dg/pr91885.c create mode 100644 gcc/testsuite/gcc.dg/strlenopt-79.c create mode 100644 gcc/testsuite/gcc.target/arm/acle/simd32.c mode change 100644 => 100755 libgcc/configure create mode 100644 libstdc++-v3/testsuite/17_intro/headers/c++1998/profile_mode.cc create mode 100644 libstdc++-v3/testsuite/17_intro/headers/c++2011/profile_mode.cc create mode 100644 libstdc++-v3/testsuite/20_util/pair/constexpr_assign.cc create mode 100644 libstdc++-v3/testsuite/20_util/pair/constexpr_swap.cc