Daily bump.
authorGCC Administrator <gccadmin@gcc.gnu.org>
Mon, 24 Jan 2022 00:16:28 +0000 (00:16 +0000)
committerGCC Administrator <gccadmin@gcc.gnu.org>
Mon, 24 Jan 2022 00:16:28 +0000 (00:16 +0000)
contrib/ChangeLog
gcc/ChangeLog
gcc/DATESTAMP
gcc/cp/ChangeLog
gcc/testsuite/ChangeLog
libstdc++-v3/ChangeLog

index 94b2202..ba192b6 100644 (file)
@@ -1,3 +1,8 @@
+2022-01-23  Martin Liska  <mliska@suse.cz>
+
+       * filter-clang-warnings.py: Filter out one another warning
+       for sse.md.
+
 2022-01-19  Martin Liska  <mliska@suse.cz>
 
        * check_GNU_style_lib.py: Skip Python files.
index dbbe553..3a7842c 100644 (file)
@@ -1,3 +1,11 @@
+2022-01-23  Andrew Pinski  <apinski@marvell.com>
+
+       PR target/64821
+       * config/aarch64/aarch64-builtins.cc
+       (aarch64_general_gimple_fold_builtin): Handle
+       __builtin_aarch64_sqrt* and simplify into SQRT internal
+       function.
+
 2022-01-22  Jakub Jelinek  <jakub@redhat.com>
 
        PR other/104176
index 1c9ace6..da164bf 100644 (file)
@@ -1 +1 @@
-20220123
+20220124
index 4b49a67..1aadfa9 100644 (file)
@@ -1,3 +1,28 @@
+2022-01-23  Will Wray  <wjwray@gmail.com>
+
+       PR c++/55227
+       * decl.cc (reshape_init_r): Only call has_designator_check when
+       first_initializer_p or for the inner constructor element.
+       (cp_complete_array_type): Call reshape_init on braced-init-list.
+
+2022-01-23  Jason Merrill  <jason@redhat.com>
+
+       PR c++/104182
+       * cp-gimplify.cc (cp_genericize_target_expr): Make sure nothing
+       has set DECL_INITIAL on a TARGET_EXPR slot.
+       * tree.cc (is_local_temp): Don't check DECL_CONTEXT.
+
+2022-01-23  Jason Merrill  <jason@redhat.com>
+
+       PR c++/101072
+       * cp-tree.h (build_implicit_conv_flags): Declare.
+       * call.cc (build_implicit_conv_flags): Split out from...
+       (perform_implicit_conversion_flags): ...here.
+       * decl.cc (check_initializer): Use it.
+       * pt.cc (tsubst_copy_and_build): Remove TARGET_EXPR handling.
+       * semantics.cc (finish_compound_literal): Don't treat
+       scalar values like CONSTRUCTORs.
+
 2022-01-21  Jason Merrill  <jason@redhat.com>
 
        * semantics.cc (find_failing_clause): Return expr if not
index 8fa1689..6d22984 100644 (file)
@@ -1,3 +1,24 @@
+2022-01-23  Will Wray  <wjwray@gmail.com>
+
+       PR c++/55227
+       * g++.dg/cpp2a/desig21.C: New test.
+
+2022-01-23  Andrew Pinski  <apinski@marvell.com>
+
+       PR target/64821
+       * gcc.target/aarch64/vsqrt-1.c: New test.
+       * gcc.target/aarch64/vsqrt-2.c: New test.
+
+2022-01-23  Jason Merrill  <jason@redhat.com>
+
+       PR c++/104182
+       * g++.dg/cpp0x/initlist127.C: New test.
+
+2022-01-23  Jason Merrill  <jason@redhat.com>
+
+       PR c++/101072
+       * g++.dg/cpp0x/constexpr-empty14a.C: New test.
+
 2022-01-22  David Malcolm  <dmalcolm@redhat.com>
 
        PR analyzer/104150
index 04e5e69..a87a5c8 100644 (file)
@@ -1,3 +1,38 @@
+2022-01-23  Jonathan Wakely  <jwakely@redhat.com>
+
+       PR libstdc++/104032
+       * include/std/spanstream (basic_spanbuf(basic_spanbuf&&)): Use
+       mem-initializer for _M_buf.
+       (basic_spanbuf::Operator=(basic_spanbuf&&)): Fix ill-formed
+       member access.
+       * testsuite/27_io/spanstream/2.cc: New test.
+
+2022-01-23  Jonathan Wakely  <jwakely@redhat.com>
+
+       * src/c++17/floating_from_chars.cc (USE_STRTOD_FOR_FROM_CHARS):
+       Define macro for case where std::from_chars is implemented in
+       terms of strtod, strtof or strtold.
+       (buffer_resource, valid_fmt, find_end_of_float, pattern)
+       (from_chars_impl, make_result, reserve_string): Do not define
+       unless USE_STRTOD_FOR_FROM_CHARS is defined.
+       (from_chars): Define when at least one of USE_LIB_FAST_FLOAT and
+       USE_STRTOD_FOR_FROM_CHARS is defined, instead of
+       _GLIBCXX_HAVE_USELOCALE. Use fast_float for long double when it
+       is binary64.
+
+2022-01-23  Jonathan Wakely  <jwakely@redhat.com>
+
+       PR libstdc++/104174
+       * include/bits/hashtable_policy.h (_Map_base): Add partial
+       specialization for maps with const key types.
+       * testsuite/23_containers/unordered_map/104174.cc: New test.
+
+2022-01-23  Jonathan Wakely  <jwakely@redhat.com>
+
+       PR libstdc++/104019
+       * include/bits/shared_ptr_base.h (_Sp_counted_base<>::_M_release):
+       Set members to zero without type punning.
+
 2022-01-21  Jonathan Wakely  <jwakely@redhat.com>
 
        * testsuite/20_util/shared_ptr/cons/array.cc: Fix comment.