From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2168) id 822C4385B189; Fri, 25 Nov 2022 10:08:27 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 822C4385B189 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1669370907; bh=5ywWeCnHaZ24RrROcdX42rLCfV7Cl5HFRFyun9/GPTg=; h=From:To:Subject:Date:From; b=hmm43n/kKWomB53e4BhGD8MbZ8VMT1WtjZDNg/RzK7d1RVXrQxUivVB+o0t6ejolv +/bWmLfNLS1/xRIDgvHOuUV4myhIS6vBVj0VjnCcY0i5okpXPA9hK09eL5B740Xd6B 0Ty649KJlddj8H7J+MtDzWEPekhhY5BkhmEUsr7Q= MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: GCC Administrator To: gcc-cvs@gcc.gnu.org, libstdc++-cvs@gcc.gnu.org Subject: [gcc r12-8941] Daily bump. X-Act-Checkin: gcc X-Git-Author: GCC Administrator X-Git-Refname: refs/heads/releases/gcc-12 X-Git-Oldrev: b492e3a0d801b93e6af7ed49b89aa27fb02ab1da X-Git-Newrev: ed8d7ecac11d587687986a0895050955c09d2f43 Message-Id: <20221125100827.822C4385B189@sourceware.org> Date: Fri, 25 Nov 2022 10:08:27 +0000 (GMT) List-Id: https://gcc.gnu.org/g:ed8d7ecac11d587687986a0895050955c09d2f43 commit r12-8941-ged8d7ecac11d587687986a0895050955c09d2f43 Author: GCC Administrator Date: Fri Nov 25 10:07:49 2022 +0000 Daily bump. Diff: --- gcc/ChangeLog | 9 +++++ gcc/DATESTAMP | 2 +- gcc/testsuite/ChangeLog | 9 +++++ libstdc++-v3/ChangeLog | 94 +++++++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 113 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a484d91cda6..a07ca91fdd2 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,12 @@ +2022-11-25 Eric Botcazou + + * range-op.cc (operator_bitwise_xor::op1_range): Fix thinko. + +2022-11-25 Eric Botcazou + + * tree-loop-distribution.cc (loop_distribution::classify_builtin_ldst): + Bail out if source and destination do not have the same storage order. + 2022-11-21 Jakub Jelinek Backported from master: diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index 059dd7f104c..9fb04058de4 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20221124 +20221125 diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 7d03bb8e8dd..ac114f6083e 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,12 @@ +2022-11-25 Eric Botcazou + + * gnat.dg/opt100.adb: New test. + * gnat.dg/opt100_pkg.adb, gnat.dg/opt100_pkg.ads: New helper. + +2022-11-25 Eric Botcazou + + * gnat.dg/sso18.adb: New test. + 2022-11-20 Jakub Jelinek Backported from master: diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index f0918cddd82..56ad3b53c81 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,97 @@ +2022-11-24 Jonathan Wakely + + Backported from master: + 2022-09-15 Jonathan Wakely + + * include/std/memory: Do not include . + +2022-11-24 Jonathan Wakely + + Backported from master: + 2022-11-11 Jonathan Wakely + + * testsuite/20_util/tuple/swap.cc (MoveOnly::operator==): Add + const qualifier. + * testsuite/26_numerics/valarray/87641.cc (X::operator==): + Likewise. + +2022-11-24 Jonathan Wakely + + Backported from master: + 2022-11-02 Jonathan Wakely + + * include/std/expected (expected::_M_invalid): Remove. + +2022-11-24 Jonathan Wakely + + Backported from master: + 2022-11-21 Jonathan Wakely + + * include/bits/chrono.h (duration): Check preconditions on + template arguments before using them. + +2022-11-24 Jonathan Wakely + + Backported from master: + 2022-10-28 Jonathan Wakely + + * include/bits/fs_path.h (path::filename()): Fix dangling + reference. + +2022-11-24 Jonathan Wakely + + Backported from master: + 2022-09-14 Jonathan Wakely + + * doc/xml/manual/intro.xml: Document LWG 1203. + * doc/html/*: Regenerate. + +2022-11-24 Jonathan Wakely + + Backported from master: + 2022-09-07 Jonathan Wakely + + * include/std/barrier: Add missing runtime exception. + +2022-11-24 Jonathan Wakely + + Backported from master: + 2022-08-04 Jonathan Wakely + + * include/bits/fs_dir.h (directory_iterator): Add comparison + with std::default_sentinel_t. Remove redundant operator!= for + C++20. + * (recursive_directory_iterator): Likewise. + * include/bits/iterator_concepts.h [!__cpp_lib_concepts] + (default_sentinel_t, default_sentinel): Define even if concepts + are not supported. + * include/bits/regex.h (regex_iterator): Add comparison with + std::default_sentinel_t. Remove redundant operator!= for C++20. + (regex_token_iterator): Likewise. + (regex_token_iterator::_M_end_of_seq()): Add noexcept. + * testsuite/27_io/filesystem/iterators/lwg3719.cc: New test. + * testsuite/28_regex/iterators/regex_iterator/lwg3719.cc: + New test. + * testsuite/28_regex/iterators/regex_token_iterator/lwg3719.cc: + New test. + +2022-11-24 Jonathan Wakely + + Backported from master: + 2022-09-23 Jonathan Wakely + + PR libstdc++/91456 + * include/std/type_traits (__is_nothrow_invocable): Remove. + (__is_invocable_impl::__nothrow_type): New member type which + checks if the conversion can throw. + (__is_nt_invocable_impl): Replace class template with alias + template to __is_nt_invocable_impl::__nothrow_type. + * testsuite/20_util/is_nothrow_invocable/91456.cc: New test. + * testsuite/20_util/is_nothrow_convertible/value.cc: Remove + macro used by value_ext.cc test. + * testsuite/20_util/is_nothrow_convertible/value_ext.cc: Remove + test for non-standard __is_nothrow_invocable trait. + 2022-11-22 Jonathan Wakely PR libstdc++/106201