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-aarch64-next-defconfig in repository toolchain/ci/gcc.
from f3043feb1b2 Daily bump. adds 7eee6d21961 document effective target fileio adds 070b4df8a06 libstdc++: Replace reserved identifier _T with _Tp (PR 94901) adds a5f2fb1ff17 libstdc++: Replace deduced return type in ranges::iter_move [...] adds 187c854cc62 libstdc++: Add more tests for _E10, _E11 etc. (PR 94901) adds bf1dde9790d libsanitizer: Add missing file and regen Makefile.in adds d730fd95eeb gcc: Enable bits for sanitizer support on FreeBSD x86_64 adds afb9b710810 i386: Use generic division to generate INVALID and DIVZERO [...] adds bcbf334afe0 c++: generic lambda and -fsanitize=vla-bound [PR93822] adds a2f32550a08 c++: -fmerge-all-constants vs. destructors [PR91529] adds 82d5decef38 c++: Local class DMI using local static [PR90479] adds 56017225eed testsuite: Enable asan tests on FreeBSD x86_64 adds 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] new 23c42a01bce Daily bump. new 6607bdd9999 Add patch_area_size and patch_area_entry to crtl new dcbf228e4a1 tilegx: Unbreak build new 116784bbde9 Add asan subdirectory for gfortran.dg.
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/ChangeLog | 39 +++ gcc/DATESTAMP | 2 +- gcc/c-family/ChangeLog | 6 + gcc/c-family/c-attribs.c | 9 + gcc/cfgexpand.c | 33 +++ gcc/config/freebsd.h | 21 ++ gcc/config/i386/darwin.h | 5 + gcc/config/i386/freebsd.h | 4 + gcc/config/i386/i386.c | 4 +- gcc/config/i386/i386.h | 7 + gcc/config/tilegx/tilegx.md | 2 +- gcc/cp/ChangeLog | 37 +++ gcc/cp/cp-tree.h | 2 +- gcc/cp/decl.c | 5 +- gcc/cp/init.c | 8 +- gcc/cp/parser.c | 3 +- gcc/cp/pt.c | 14 +- gcc/cp/semantics.c | 18 +- gcc/cp/typeck2.c | 6 +- gcc/doc/invoke.texi | 1 + gcc/doc/sourcebuild.texi | 6 + gcc/emit-rtl.h | 6 + gcc/opts.c | 4 +- gcc/testsuite/ChangeLog | 37 +++ gcc/testsuite/c-c++-common/asan/asan-interface-1.c | 2 +- gcc/testsuite/c-c++-common/asan/clone-test-1.c | 2 +- gcc/testsuite/c-c++-common/asan/no-asan-stack.c | 2 +- gcc/testsuite/c-c++-common/asan/pr59063-1.c | 2 +- gcc/testsuite/c-c++-common/asan/pr59063-2.c | 2 +- .../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/asan/asan_test.C | 7 +- gcc/testsuite/g++.dg/asan/asan_test_utils.h | 3 + .../g++.dg/asan/interception-failure-test-1.C | 2 +- .../g++.dg/asan/interception-malloc-test-1.C | 4 +- gcc/testsuite/g++.dg/asan/interception-test-1.C | 2 +- gcc/testsuite/g++.dg/cpp0x/nsdmi-template20.C | 13 + gcc/testsuite/g++.dg/cpp2a/paren-init26.C | 14 + gcc/testsuite/g++.dg/init/const14.C | 14 + gcc/testsuite/g++.dg/template/sfinae29.C | 25 ++ gcc/testsuite/gcc.dg/asan/pr87930.c | 2 +- gcc/testsuite/gfortran.dg/asan/asan.exp | 40 +++ .../gfortran.dg/asan/pointer_assign_16.f90 | 304 +++++++++++++++++++++ gcc/varasm.c | 30 +- libatomic/ChangeLog | 6 + libatomic/config/x86/fenv.c | 20 +- libgcc/ChangeLog | 6 + libgcc/config/i386/sfp-exceptions.c | 20 +- libgfortran/ChangeLog | 6 + libgfortran/config/fpu-387.h | 19 +- libsanitizer/ChangeLog | 10 + libsanitizer/configure.tgt | 2 + libsanitizer/sanitizer_common/Makefile.am | 1 + libsanitizer/sanitizer_common/Makefile.in | 3 + libstdc++-v3/ChangeLog | 27 ++ libstdc++-v3/include/bits/iterator_concepts.h | 42 ++- libstdc++-v3/include/std/type_traits | 4 +- libstdc++-v3/testsuite/17_intro/badnames.cc | 85 ++++++ .../24_iterators/customization_points/92894.cc | 52 ++++ .../24_iterators/indirect_callable/92894.cc | 55 ++++ 61 files changed, 1030 insertions(+), 112 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/cpp0x/nsdmi-template20.C create mode 100644 gcc/testsuite/g++.dg/cpp2a/paren-init26.C create mode 100644 gcc/testsuite/g++.dg/init/const14.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 create mode 100644 libstdc++-v3/testsuite/17_intro/badnames.cc create mode 100644 libstdc++-v3/testsuite/24_iterators/customization_points/92894.cc create mode 100644 libstdc++-v3/testsuite/24_iterators/indirect_callable/92894.cc