Daily bump.

This commit is contained in:
GCC Administrator 2022-01-24 00:16:28 +00:00
parent 51631875a2
commit 0c940703f0
6 changed files with 95 additions and 1 deletions

View 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.

View 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

View File

@ -1 +1 @@
20220123
20220124

View 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

View 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

View 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.