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-stable-allnoconfig in repository toolchain/ci/gcc.
from 2221fb6f668 analyzer: Add exit, and _exit replacement, to sm-signal. adds 72af65b91cc c++: -fsanitize=vptr and -fstrong-eval-order. [PR95221] adds 45c50b6a63a Suggest including <stdbool.h> for bool, true and false adds af114c38db8 Suggest including <stdint.h> or <cstdint> for [u]int[8|16|32|64]_t adds fabd4f16a15 Daily bump. adds b2b8eb6202b c++: Fix C++17 eval order for virtual op=. adds 33e09fc5051 Adjust typo in testcase of my last commit adds 804254edb48 Darwin: Make sanitizer local vars linker-visible. adds 988b853f9c8 libstdc++: Simplify filesystem::path SFINAE constraints adds 00c8f2a5e3a libstdc++: Remove incorrect static specifiers adds 584d52b088f libstdc++: Refactor filesystem::path string conversions adds 8df7ee67f6f Fixes a hang on an invalid ID in a WAIT statement. adds 3cb0c7cc160 libstdc++: Fix function that can't be constexpr in C++11 (P [...] new 6d1556ecfae c++: Avoid concept evaluation when uid-sensitive [PR94038] new a57aa111916 libstdc++: Compile PR93978 testcase with -Wall
The 2 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 | 5 + gcc/DATESTAMP | 2 +- gcc/c-family/ChangeLog | 11 + gcc/c-family/known-headers.cc | 38 ++ gcc/config/darwin.h | 6 + gcc/cp/ChangeLog | 7 + gcc/cp/constexpr.c | 3 +- gcc/cp/cp-gimplify.c | 1 + gcc/cp/cp-ubsan.c | 33 +- gcc/fortran/ChangeLog | 6 + gcc/fortran/libgfortran.h | 1 + gcc/testsuite/ChangeLog | 14 + gcc/testsuite/c-c++-common/ubsan/bounds-13.c | 1 + gcc/testsuite/c-c++-common/ubsan/bounds-2.c | 1 + gcc/testsuite/c-c++-common/ubsan/div-by-zero-1.c | 1 + gcc/testsuite/c-c++-common/ubsan/div-by-zero-6.c | 1 + gcc/testsuite/c-c++-common/ubsan/div-by-zero-7.c | 1 + gcc/testsuite/c-c++-common/ubsan/overflow-add-1.c | 1 + gcc/testsuite/c-c++-common/ubsan/overflow-add-2.c | 1 + gcc/testsuite/c-c++-common/ubsan/overflow-int128.c | 1 + gcc/testsuite/c-c++-common/ubsan/overflow-sub-1.c | 1 + gcc/testsuite/c-c++-common/ubsan/overflow-sub-2.c | 1 + gcc/testsuite/g++.dg/cpp1z/eval-order9.C | 18 + gcc/testsuite/g++.dg/spellcheck-stdint.C | 68 +++ gcc/testsuite/g++.dg/ubsan/pr85029.C | 2 +- gcc/testsuite/g++.dg/ubsan/ubsan.exp | 2 +- gcc/testsuite/g++.dg/ubsan/vptr-14.C | 2 +- gcc/testsuite/g++.dg/warn/pr94038-3.C | 15 + gcc/testsuite/gcc.dg/spellcheck-stdbool.c | 17 + gcc/testsuite/gcc.dg/spellcheck-stdint.c | 62 +++ gcc/testsuite/gcc.target/i386/pr92658-avx512vl.c | 2 +- libgfortran/ChangeLog | 7 + libgfortran/io/async.c | 7 + libgfortran/runtime/error.c | 4 + libgomp/ChangeLog | 5 + libgomp/testsuite/libgomp.fortran/async_io_9.f90 | 20 + libstdc++-v3/ChangeLog | 59 +++ libstdc++-v3/include/bits/fs_path.h | 473 +++++++++++---------- libstdc++-v3/include/debug/helper_functions.h | 2 +- libstdc++-v3/include/experimental/bits/fs_path.h | 19 +- libstdc++-v3/src/c++17/fs_path.cc | 6 +- .../93978.cc => 25_algorithms/copy/debug/95289.cc} | 20 +- .../27_io/filesystem/path/construct/80762.cc | 6 + .../testsuite/std/ranges/adaptors/93978.cc | 5 +- 44 files changed, 683 insertions(+), 275 deletions(-) create mode 100644 gcc/testsuite/g++.dg/cpp1z/eval-order9.C create mode 100644 gcc/testsuite/g++.dg/spellcheck-stdint.C create mode 100644 gcc/testsuite/g++.dg/warn/pr94038-3.C create mode 100644 gcc/testsuite/gcc.dg/spellcheck-stdbool.c create mode 100644 gcc/testsuite/gcc.dg/spellcheck-stdint.c create mode 100644 libgomp/testsuite/libgomp.fortran/async_io_9.f90 copy libstdc++-v3/testsuite/{std/ranges/adaptors/93978.cc => 25_algorithms/copy/de [...]