This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gnu/gnu-master-arm-bootstrap_O3 in repository toolchain/ci/gcc.
from 13ec6724cd5 Darwin: Fix bootstrap break from libsanitizer changes. adds 30da2906ac5 c++: Parenthesized-init of aggregates accepts invalid code [...] adds 4f6c1ca287d c++: Missing SFINAE with inaccessible static data member [PR90880] adds 23c42a01bce Daily bump. adds 6607bdd9999 Add patch_area_size and patch_area_entry to crtl adds dcbf228e4a1 tilegx: Unbreak build adds 116784bbde9 Add asan subdirectory for gfortran.dg. adds 7df45789907 Darwin: Fix a diagnostic spelling [PR93861] adds 6abe1c30847 gfortran: Get asan library from TEST_ALWAYS_FLAGS adds 77f45a962fc Daily bump. adds 18a6e4130fb Fix incorrect use of 'Unrestricted_Access in testcase adds 22b6b5d6cfb libstdc++: Make byte-sized std::fill_n a constant expressio [...] adds c3185b64529 i386: Use plus_constant instead of gen_rtx_PLUS
No new revisions were added by this update.
Summary of changes: gcc/ChangeLog | 43 +++ gcc/DATESTAMP | 2 +- gcc/c-family/ChangeLog | 6 + gcc/c-family/c-attribs.c | 9 + gcc/cfgexpand.c | 33 +++ gcc/config/darwin-driver.c | 2 +- gcc/config/i386/i386-expand.c | 18 +- gcc/config/i386/i386.c | 31 +-- gcc/config/i386/i386.md | 16 +- gcc/config/tilegx/tilegx.md | 2 +- gcc/cp/ChangeLog | 20 ++ gcc/cp/cp-tree.h | 2 +- gcc/cp/parser.c | 3 +- gcc/cp/pt.c | 5 +- gcc/cp/semantics.c | 18 +- gcc/cp/typeck2.c | 6 +- gcc/doc/invoke.texi | 1 + gcc/emit-rtl.h | 6 + gcc/opts.c | 4 +- gcc/testsuite/ChangeLog | 34 +++ .../patchable_function_entry-error-1.c | 9 + .../patchable_function_entry-error-2.c | 9 + .../patchable_function_entry-error-3.c | 17 ++ gcc/testsuite/g++.dg/cpp2a/paren-init26.C | 14 + gcc/testsuite/g++.dg/template/sfinae29.C | 25 ++ gcc/testsuite/gfortran.dg/asan/asan.exp | 40 +++ .../gfortran.dg/asan/pointer_assign_16.f90 | 304 +++++++++++++++++++++ gcc/testsuite/gnat.dg/limited1_inner.adb | 2 +- gcc/testsuite/lib/gfortran.exp | 8 + gcc/varasm.c | 30 +- libstdc++-v3/ChangeLog | 8 + libstdc++-v3/include/bits/stl_algobase.h | 9 + .../testsuite/25_algorithms/fill_n/constexpr.cc | 32 ++- 33 files changed, 689 insertions(+), 79 deletions(-) create mode 100644 gcc/testsuite/c-c++-common/patchable_function_entry-error-1.c create mode 100644 gcc/testsuite/c-c++-common/patchable_function_entry-error-2.c create mode 100644 gcc/testsuite/c-c++-common/patchable_function_entry-error-3.c create mode 100644 gcc/testsuite/g++.dg/cpp2a/paren-init26.C create mode 100644 gcc/testsuite/g++.dg/template/sfinae29.C create mode 100644 gcc/testsuite/gfortran.dg/asan/asan.exp create mode 100644 gcc/testsuite/gfortran.dg/asan/pointer_assign_16.f90