This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gcc_check/master-arm in repository toolchain/ci/gcc.
from a79fe53d6ce Amend split vector loop analysis into main and epilogue analysis adds 98244c68e77 Abstract ranger cache update list. adds 1f6dd5de339 Remove def chain import assert from GORI. adds 2afc8f0b919 libsanitizer: merge from master (78d3e0a4f1406b17cdecc77540 [...] adds 5f0a3fb08cb libsanitizer: Apply local patches adds bdb9d472189 libsanitizer: update LOCAL_PATCHES. adds 5997e6a6ecc libstdc++: Add support for POWER9 DARN instruction to std:: [...] adds 2627e3b7fd8 libstdc++: Add [[unlikely]] attributes to std::random_devic [...] adds 7a300b413a6 Darwin, crts: Fix a build warning. adds 834c8749ced Darwin, aarch64 : Initial support for the self-host driver. adds f8a1e069932 Darwin, aarch64 : Ada fixes for hosted tools. adds f1e2879ecfc Darwin : Make trampoline templates linker-visible. adds 8f4860f9568 testsuite, Darwin : Fix tsvc test build on Darwin. adds 452a0afbace Fortran: Add more documentation for mixed-language programm [...] adds c64ca0e7bbe Fortran: Delete unused decl in gfortran.h adds 1727bb533ed Fortran: Missing error with IMPLICIT none (external) [PR100972] adds 70d6f6e41f7 libstdc++: Fix pack expansions in tuple_size_v specializations adds 2b2d97fc545 libstdc++: Fix inconsistent noexcept-specific for valarray [...] new 432ed97b992 Fortran: a symbol in a COMMON cannot be a coarray new 9cc8ca8da90 Avoid left shift of negative value in ipa-modref-tree.h new 5f377803722 Fix ice in insert_access new bcf3728abe8 Fortran: fix simplification of array-valued parameter expressions
The 4 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/ada/gcc-interface/Make-lang.in | 18 ++- gcc/ada/sigtramp-ios.c | 8 ++ gcc/config.host | 7 +- gcc/config/aarch64/host-aarch64-darwin.c | 33 ++++++ gcc/config/aarch64/x-darwin | 3 + gcc/config/darwin.h | 2 + gcc/fortran/decl.c | 4 +- gcc/fortran/expr.c | 22 ++-- gcc/fortran/gfortran.h | 9 -- gcc/fortran/gfortran.texi | 22 +++- gcc/fortran/match.c | 7 ++ gcc/fortran/resolve.c | 13 +++ gcc/fortran/symbol.c | 4 +- gcc/gimple-range-cache.cc | 129 ++++++++++++++++----- gcc/gimple-range-cache.h | 4 +- gcc/gimple-range-gori.cc | 3 - gcc/ipa-modref-tree.h | 37 +++++- gcc/testsuite/g++.dg/torture/pr103073.C | 8 ++ gcc/testsuite/gcc.dg/pr103093.c | 20 ++++ gcc/testsuite/gcc.dg/tree-ssa/modref-11.c | 13 +++ gcc/testsuite/gcc.dg/vect/tsvc/tsvc.h | 7 ++ .../gfortran.dg/external_implicit_none_3.f08 | 17 +++ gcc/testsuite/gfortran.dg/implicit_14.f90 | 2 +- gcc/testsuite/gfortran.dg/pr102817.f90 | 17 +++ gcc/testsuite/gfortran.dg/pr69419.f90 | 9 ++ libgcc/config/darwin10-unwind-find-enc-func.c | 1 + libgcc/config/i386/darwin-lib.h | 2 + libsanitizer/LOCAL_PATCHES | 2 +- libsanitizer/MERGE | 2 +- libsanitizer/asan/asan_errors.cpp | 3 +- libsanitizer/asan/asan_fake_stack.cpp | 7 +- libsanitizer/asan/asan_globals.cpp | 4 +- libsanitizer/hwasan/hwasan_report.cpp | 2 +- libsanitizer/hwasan/hwasan_thread.cpp | 7 +- .../sanitizer_common/sanitizer_stacktrace.h | 4 +- .../sanitizer_stacktrace_printer.cpp | 5 +- libstdc++-v3/include/bits/range_access.h | 8 +- libstdc++-v3/include/std/tuple | 4 +- libstdc++-v3/src/c++11/random.cc | 60 +++++++++- .../26_numerics/random/random_device/cons/token.cc | 5 +- .../26_numerics/random/random_device/entropy.cc | 2 +- 41 files changed, 433 insertions(+), 103 deletions(-) create mode 100644 gcc/config/aarch64/host-aarch64-darwin.c create mode 100644 gcc/config/aarch64/x-darwin create mode 100644 gcc/testsuite/g++.dg/torture/pr103073.C create mode 100644 gcc/testsuite/gcc.dg/pr103093.c create mode 100644 gcc/testsuite/gcc.dg/tree-ssa/modref-11.c create mode 100644 gcc/testsuite/gfortran.dg/external_implicit_none_3.f08 create mode 100644 gcc/testsuite/gfortran.dg/pr102817.f90 create mode 100644 gcc/testsuite/gfortran.dg/pr69419.f90