This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gnu_native_check_gcc/master-aarch64 in repository toolchain/ci/gcc.
from be58bf98e98 middle-end: Simplify subtract where both arguments are bein [...] adds 8e34d92ef29 Loop over intersected bitmaps. adds db33daa4677 libstdc++: Add comparisons to std::default_sentinel_t (LWG 3719) adds 2678386df2c libstdc++: Make std::string_view(Range&&) constructor explicit adds cd093ee4685 Add myself as AutoFDO maintainer adds 4ad52740ba0 Daily bump. adds ffe4f55aa1b [RSIC-V] Fix 32bit riscv with zbs extension enabled adds 4574dad43f7 rs6000: Correct return value of check_p9modulo_hw_available. adds 36bc2a8f24f tree-optimization/106533 - loop distribution of inner loop of nest adds 47964e76627 Inline unsupported_range constructor. adds 6ca948264d6 backthreader dump fix adds 1878ab3650d middle-end: Guard value_replacement and store_elim from see [...] adds 29fc5075d7e libstdc++: Implement <experimental/scope> from LFTSv3 adds 58a644cfdee libstdc++: Add feature test macro for <experimental/scope>
No new revisions were added by this update.
Summary of changes: ChangeLog | 4 + MAINTAINERS | 2 +- gcc/ChangeLog | 39 ++ gcc/DATESTAMP | 2 +- gcc/config/riscv/predicates.md | 2 +- gcc/gimple-range-path.cc | 40 +- gcc/testsuite/ChangeLog | 20 + gcc/testsuite/gcc.dg/tree-ssa/ldist-39.c | 16 + gcc/testsuite/lib/target-supports.exp | 2 +- gcc/tree-loop-distribution.cc | 2 +- gcc/tree-ssa-phiopt.cc | 4 +- gcc/tree-ssa-threadbackward.cc | 8 +- gcc/value-range.cc | 6 - gcc/value-range.h | 10 +- libstdc++-v3/ChangeLog | 59 +++ libstdc++-v3/include/Makefile.am | 1 + libstdc++-v3/include/Makefile.in | 1 + libstdc++-v3/include/bits/fs_dir.h | 33 +- libstdc++-v3/include/bits/iterator_concepts.h | 28 +- libstdc++-v3/include/bits/regex.h | 24 +- libstdc++-v3/include/experimental/scope | 497 +++++++++++++++++++++ libstdc++-v3/include/std/string_view | 2 +- .../basic_string_view/cons/char/range_c++20.cc | 28 +- .../basic_string_view/cons/wchar_t/range_c++20.cc | 30 +- .../27_io/filesystem/iterators/lwg3719.cc | 39 ++ .../28_regex/iterators/regex_iterator/lwg3719.cc | 29 ++ .../iterators/regex_token_iterator/lwg3719.cc | 29 ++ .../testsuite/experimental/scopeguard/exit.cc | 300 +++++++++++++ .../testsuite/experimental/scopeguard/uniqueres.cc | 366 +++++++++++++++ 29 files changed, 1559 insertions(+), 64 deletions(-) create mode 100644 gcc/testsuite/gcc.dg/tree-ssa/ldist-39.c create mode 100644 libstdc++-v3/include/experimental/scope create mode 100644 libstdc++-v3/testsuite/27_io/filesystem/iterators/lwg3719.cc create mode 100644 libstdc++-v3/testsuite/28_regex/iterators/regex_iterator/lwg3719.cc create mode 100644 libstdc++-v3/testsuite/28_regex/iterators/regex_token_iterator/ [...] create mode 100644 libstdc++-v3/testsuite/experimental/scopeguard/exit.cc create mode 100644 libstdc++-v3/testsuite/experimental/scopeguard/uniqueres.cc