]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Daily bump.
authorGCC Administrator <gccadmin@gcc.gnu.org>
Fri, 23 Sep 2022 00:18:01 +0000 (00:18 +0000)
committerGCC Administrator <gccadmin@gcc.gnu.org>
Fri, 23 Sep 2022 00:18:01 +0000 (00:18 +0000)
gcc/ChangeLog
gcc/DATESTAMP
gcc/c-family/ChangeLog
gcc/c/ChangeLog
gcc/cp/ChangeLog
gcc/fortran/ChangeLog
gcc/po/ChangeLog
gcc/testsuite/ChangeLog
libgcc/ChangeLog
libiberty/ChangeLog
libstdc++-v3/ChangeLog

index f18943c8793e45b78f86aa20fba595b2ef7384b3..6986721ee61aa540f3e4a03c3ba45fa2065ceade 100644 (file)
@@ -1,3 +1,227 @@
+2022-09-22  Andrew MacLeod  <amacleod@redhat.com>
+
+       * gimple-range-fold.cc (range_of_range_op): Handle no operands.
+       (range_of_call): Do not check for builtins.
+       (fold_using_range::range_of_builtin_call): Delete.
+       (fold_using_range::range_of_builtin_int_call): Delete.
+       * gimple-range-fold.h: Adjust prototypes.
+       * gimple-range-op.cc (class cfn_parity): New.
+       (gimple_range_op_handler::maybe_builtin_call): Set arguments.
+
+2022-09-22  Andrew MacLeod  <amacleod@redhat.com>
+
+       * gimple-range-fold.cc (range_of_builtin_int_call): Remove case
+       for CFN_GOACC_DIM_*.
+       * gimple-range-op.cc (class cfn_goacc_dim): New.
+       (gimple_range_op_handler::maybe_builtin_call): Set arguments.
+
+2022-09-22  Andrew MacLeod  <amacleod@redhat.com>
+
+       * gimple-range-fold.cc (range_of_builtin_int_call): Remove case
+       for CFN_BUILT_IN_STRLEN.
+       * gimple-range-op.cc (class cfn_strlen): New.
+       (gimple_range_op_handler::maybe_builtin_call): Set arguments.
+
+2022-09-22  Andrew MacLeod  <amacleod@redhat.com>
+
+       * gimple-range-fold.cc (range_of_builtin_ubsan_call): Delete.
+       (range_of_builtin_int_call): Remove cases for
+       CFN_BUILT_IN_UBSAN_CHECK.
+       * gimple-range-op.cc (class cfn_ubsan): New.
+       (gimple_range_op_handler::maybe_builtin_call): Set arguments.
+
+2022-09-22  Andrew MacLeod  <amacleod@redhat.com>
+
+       * gimple-range-fold.cc (range_of_builtin_int_call): Remove case
+       for CFN_BUILT_IN_CLRSB.
+       * gimple-range-op.cc (class cfn_clrsb): New.
+       (gimple_range_op_handler::maybe_builtin_call): Set arguments.
+
+2022-09-22  Andrew MacLeod  <amacleod@redhat.com>
+
+       * gimple-range-fold.cc (range_of_builtin_int_call): Remove case
+       for CFN_CTZ.
+       * gimple-range-op.cc (class cfn_ctz): New.
+       (gimple_range_op_handler::maybe_builtin_call): Set arguments.
+
+2022-09-22  Andrew MacLeod  <amacleod@redhat.com>
+
+       * gimple-range-fold.cc (range_of_builtin_int_call): Remove case
+       for CFN_CLZ.
+       * gimple-range-op.cc (class cfn_clz): New.
+       (gimple_range_op_handler::maybe_builtin_call): Set arguments.
+
+2022-09-22  Andrew MacLeod  <amacleod@redhat.com>
+
+       * gimple-range-fold.cc (range_of_builtin_int_call): Remove case
+       for CFN_FFS and CFN_POPCOUNT.
+       * gimple-range-op.cc (class cfn_pocount): New.
+       (gimple_range_op_handler::maybe_builtin_call): Set arguments.
+
+2022-09-22  Andrew MacLeod  <amacleod@redhat.com>
+
+       * gimple-range-fold.cc (get_letter_range): Move to new class.
+       (range_of_builtin_int_call): Remove case for CFN_BUILT_IN_TOUPPER
+       and CFN_BUILT_IN_TOLOWER.
+       * gimple-range-op.cc (class cfn_toupper_tolower): New.
+       (gimple_range_op_handler::maybe_builtin_call): Set arguments.
+
+2022-09-22  Andrew MacLeod  <amacleod@redhat.com>
+
+       * gimple-range-fold.cc (range_of_builtin_int_call): Remove case
+       for CFN_BUILT_IN_SIGNBIT.
+       * gimple-range-op.cc (class cfn_signbit): New.
+       (gimple_range_op_handler::maybe_builtin_call): Set arguments.
+
+2022-09-22  Andrew MacLeod  <amacleod@redhat.com>
+
+       * gimple-range-fold.cc
+       (fold_using_range::range_of_builtin_int_call): Remove case for
+       CFN_BUILT_IN_CONSTANT_P.
+       * gimple-range-op.cc (gimple_range_op_handler::supported_p):
+       Check if a call also creates a range-op object.
+       (gimple_range_op_handler): Also check builtin calls.
+       (class cfn_constant_float_p): New.  Float CFN_BUILT_IN_CONSTANT_P.
+       (class cfn_constant_p): New.  Integral CFN_BUILT_IN_CONSTANT_P.
+       (gimple_range_op_handler::maybe_builtin_call): Set arguments and
+       handler for supported built-in calls.
+       * gimple-range-op.h (maybe_builtin_call): New prototype.
+
+2022-09-22  Andrew MacLeod  <amacleod@redhat.com>
+
+       * gimple-range-fold.cc (range_of_range_op): Set result to
+       VARYING if the call to fold_range fails.
+       * tree-data-ref.cc (compute_distributive_range): Ditto.
+       * tree-vrp.cc (range_fold_binary_expr): Ditto.
+       (range_fold_unary_expr): Ditto.
+       * value-query.cc (range_query::get_tree_range): Ditto.
+
+2022-09-22  Andrew MacLeod  <amacleod@redhat.com>
+
+       * range-op-float.cc (range_operator_float::fold_range): New base
+         method for "int = float op int".
+       * range-op.cc (range_op_handler::fold_range): New case.
+       * range-op.h: Update prototypes.
+
+2022-09-22  Andrew MacLeod  <amacleod@redhat.com>
+
+       * gimple-range-op.cc (gimple_range_op_handler::calc_op1): Use
+         operand 1 for second range if there is no operand 2.
+
+2022-09-22  Andrew MacLeod  <amacleod@redhat.com>
+
+       * Makefile.in (OBJS): Add gimple-range-op.o.
+       * gimple-range-edge.cc (gimple_outgoing_range_stmt_p): Use
+       gimple_range_op_handler.
+       * gimple-range-fold.cc (gimple_range_base_of_assignment): Move
+       to a method in gimple_range_op_handler.
+       (gimple_range_operand1): Ditto.
+       (gimple_range_operand2): Ditto.
+       (fold_using_range::fold_stmt): Use gimple_range_op_handler.
+       (fold_using_range::range_of_range_op): Ditto.
+       (fold_using_range::relation_fold_and_or): Ditto.
+       (fur_source::register_outgoing_edges): Ditto.
+       (gimple_range_ssa_names): Relocate to gimple-range-op.cc.
+       * gimple-range-fold.h: Adjust prototypes.
+       * gimple-range-gori.cc (gimple_range_calc_op1): Move
+       to a method in gimple_range_op_handler.
+       (gimple_range_calc_op2): Ditto.
+       (gori_compute::compute_operand_range): Use
+       gimple_range_op_handler.
+       (gori_compute::compute_logical_operands): Ditto.
+       (compute_operand1_range): Ditto.
+       (gori_compute::compute_operand2_range): Ditto.
+       (gori_compute::compute_operand1_and_operand2_range): Ditto.
+       * gimple-range-gori.h: Adjust protoypes.
+       * gimple-range-op.cc: New.  Supply gimple_range_op_handler methods.
+       * gimple-range-op.h: New.  Supply gimple_range_op_handler class.
+       * gimple-range.cc (gimple_ranger::prefill_name): Use
+       gimple_range_op_handler.
+       (gimple_ranger::prefill_stmt_dependencies): Ditto.
+       * gimple-range.h: Include gimple-range-op.h.
+       * range-op.cc (range_op_handler::range_op_handler): Adjust and
+       remove gimple * parameter option.
+       * range-op.h: Adjust prototypes.
+
+2022-09-22  Andrew MacLeod  <amacleod@redhat.com>
+
+       * range-op.cc (range_op_handler::set_op_handler): Set new fields.
+       (ange_op_handler::range_op_handler): Likewise.
+       (range_op_handler::operator bool): Remove.
+       (range_op_handler::fold_range): Use appropriate handler.
+       (range_op_handler::op1_range): Likewise.
+       (range_op_handler::op2_range): Likewise.
+       (range_op_handler::lhs_op1_relation): Likewise.
+       (range_op_handler::lhs_op2_relation): Likewise.
+       (range_op_handler::op1_op2_relation): Likewise.
+       * range-op.h (class range_op_handler): Store handler pointers.
+       (range_op_handler:: operator bool): Inline.
+
+2022-09-22  Andrew MacLeod  <amacleod@redhat.com>
+
+       * tree-ssa-threadbackward.cc
+         (back_threader::find_paths_to_names): Replace sequence with
+         a call to gimple_range_ssa_names.
+
+2022-09-22  Martin Liska  <mliska@suse.cz>
+           Fangrui Song  <i@maskray.me>
+
+       * configure: Regenerate.
+       * configure.ac: Simplify to gcc_cv_ld_compress_debug={0,1}
+       and gcc_cv_as_compress_debug={0,1}.
+       * doc/invoke.texi: Document the removal.
+       * gcc.cc (LINK_COMPRESS_DEBUG_SPEC): Simplify and ignore
+         zlib-gnu.
+       (ASM_COMPRESS_DEBUG_SPEC): Likewise.
+
+2022-09-22  Richard Biener  <rguenther@suse.de>
+
+       PR tree-optimization/106922
+       * tree-ssa-sccvn.cc (vn_walk_cb_data::same_val): New member.
+       (vn_walk_cb_data::finish): Perform delayed verification of
+       a skipped may-alias.
+       (vn_reference_lookup_pieces): Likewise.
+       (vn_reference_lookup): Likewise.
+       (vn_reference_lookup_3): When skipping stores of the same
+       value also handle constant stores that are more than a
+       single VDEF away by delaying the verification.
+
+2022-09-22  Max Filippov  <jcmvbkbc@gmail.com>
+
+       * config/xtensa/xtensa.cc (TARGET_MAX_ANCHOR_OFFSET): New
+       definition.
+
+2022-09-22  Max Filippov  <jcmvbkbc@gmail.com>
+
+       * config/xtensa/xtensa.cc (xtensa_can_output_mi_thunk)
+       (xtensa_output_mi_thunk): New functions.
+       (TARGET_ASM_CAN_OUTPUT_MI_THUNK)
+       (TARGET_ASM_OUTPUT_MI_THUNK): New macro definitions.
+       (xtensa_prepare_expand_call): Use fixed register a8 as temporary
+       when called with reload_completed set to 1.
+
+2022-09-22  Richard Biener  <rguenther@suse.de>
+
+       PR tree-optimization/99407
+       * tree-ssa-dse.cc (dse_stmt_to_dr_map): New global.
+       (dse_classify_store): Use data-ref analysis to disambiguate more uses.
+       (pass_dse::use_dr_analysis_p): New pass parameter.
+       (pass_dse::set_pass_param): Implement.
+       (pass_dse::execute): Allocate and deallocate dse_stmt_to_dr_map.
+       * passes.def: Allow DR analysis for the DSE pass before loop.
+
+2022-09-22  Richard Biener  <rguenther@suse.de>
+
+       * tree-ssa-sccvn.cc (can_track_predicate_on_edge): New
+       function split out from ...
+       (vn_nary_op_insert_pieces_predicated): ... here.
+
+2022-09-22  liuhongt  <hongtao.liu@intel.com>
+
+       PR target/106994
+       * config/i386/mmx.md (floorv2sf2): Fix typo, use
+       register_operand instead of vector_operand for operands[1].
+
 2022-09-21  Aldy Hernandez  <aldyh@redhat.com>
 
        PR tree-optimization/106967
index 6fbb09fe858635bba6b870b3d97e2ba5ef402ee1..44f77519800c47263479370efa261fb09130b7e5 100644 (file)
@@ -1 +1 @@
-20220922
+20220923
index ba3d76dd6cb7dff2a5200b7c8b64b8398a99b182..248490e9f19b09e2df31febb50737c911e1c930d 100644 (file)
@@ -1,3 +1,9 @@
+2022-09-22  David Malcolm  <dmalcolm@redhat.com>
+
+       PR c/106830
+       * c-warn.cc (check_for_xor_used_as_pow): Don't try checking
+       values that don't fit in uhwi.
+
 2022-09-15  Richard Biener  <rguenther@suse.de>
 
        * c-common.h (build_void_list_node): Remove.
index b7fe1a49df89fc184c3fc09122f61c2184161e7f..21248d35b31652a209d2e7762b2b1cae6d29ba63 100644 (file)
@@ -1,3 +1,22 @@
+2022-09-22  David Malcolm  <dmalcolm@redhat.com>
+
+       PR c/106830
+       * c-parser.cc (c_parser_initelt): Initialize m_decimal.
+       (c_parser_cast_expression): Likewise.
+       (c_parser_alignof_expression): Likewise.
+       (c_parser_postfix_expression_after_paren_type): Likewise.
+       (c_parser_postfix_expression_after_primary): Likewise.
+       (c_parser_expression): Likewise.
+       (c_parser_omp_variable_list): Likewise.
+       (c_parser_transaction_expression): Likewise.
+       * c-tree.h (c_expr::set_error): Likewise.
+       * c-typeck.cc (c_expr_sizeof_expr): Likewise.
+       (parser_build_unary_op): Likewise.
+       (parser_build_binary_op): Likewise.
+       (digest_init): Likewise.
+       (pop_init_level): Likewise.
+       * gimple-parser.cc (c_parser_gimple_call_internal): Likewise.
+
 2022-09-19  Marek Polacek  <polacek@redhat.com>
 
        PR c/106947
index afcb0f0e2c7dc9aa997417a98da9823c23e7df50..f2af297b68b5edc23d0edfa61f678a20b0d3fef2 100644 (file)
@@ -1,3 +1,15 @@
+2022-09-22  Patrick Palka  <ppalka@redhat.com>
+
+       PR c++/106826
+       * module.cc (trees_out::decl_value): Use get_template_info in
+       the MK_partial case to handle both VAR_DECL and TYPE_DECL.
+       (trees_out::key_mergeable): Likewise.
+       (trees_in::key_mergeable): Likewise.
+       (has_definition): Consider DECL_INITIAL of a partial variable
+       template specialization.
+       (depset::hash::make_dependency): Handle partial variable template
+       specializations too.
+
 2022-09-20  Patrick Palka  <ppalka@redhat.com>
 
        * decl.cc (cp_finish_decl): After updating the deduced type of a
index a53df9339f799306178f2a4cb2683da6d54888fe..998fb1b74cf790de837f8e954d5d857130dcbc37 100644 (file)
@@ -1,3 +1,16 @@
+2022-09-22  José Rui Faustino de Sousa  <jrfsousa@gmail.com>
+
+       PR fortran/100103
+       * trans-array.cc (gfc_is_reallocatable_lhs): Add select rank
+       temporary associate names as possible targets of automatic
+       reallocation.
+
+2022-09-22  Harald Anlauf  <anlauf@gmx.de>
+
+       PR fortran/82868
+       * trans-decl.cc (generate_coarray_sym_init): Skip symbol
+       if attr.associate_var.
+
 2022-09-20  Tobias Burnus  <tobias@codesourcery.com>
 
        PR fortran/104143
index eeb2b8eb1ce780945badef151b8227c270fd72de..55d13c7bb57cf446ccfdfdfca9a082a1acece3fe 100644 (file)
@@ -1,3 +1,7 @@
+2022-09-22  Joseph Myers  <joseph@codesourcery.com>
+
+       * fr.po: Update.
+
 2022-08-30  Joseph Myers  <joseph@codesourcery.com>
 
        * sv.po: Update.
index 68f8231020bedc732811b24476eb5b8842e70b34..7430fa9b32df1f6438ead6fc95b0a03c47ac0d58 100644 (file)
@@ -1,3 +1,44 @@
+2022-09-22  José Rui Faustino de Sousa  <jrfsousa@gmail.com>
+
+       PR fortran/100103
+       * gfortran.dg/PR100103.f90: New test.
+
+2022-09-22  Harald Anlauf  <anlauf@gmx.de>
+
+       PR fortran/82868
+       * gfortran.dg/associate_26a.f90: New test.
+
+2022-09-22  Richard Biener  <rguenther@suse.de>
+
+       PR tree-optimization/102801
+       * g++.dg/warn/Wuninitialized-33.C: New testcase.
+
+2022-09-22  Patrick Palka  <ppalka@redhat.com>
+
+       PR c++/106826
+       * g++.dg/modules/partial-2_a.C: New test.
+       * g++.dg/modules/partial-2_b.C: New test.
+
+2022-09-22  David Malcolm  <dmalcolm@redhat.com>
+
+       PR c/106830
+       * gcc.dg/Wxor-used-as-pow-pr106830.c: New test.
+
+2022-09-22  Richard Biener  <rguenther@suse.de>
+
+       PR tree-optimization/106922
+       * gcc.dg/tree-ssa/ssa-fre-100.c: New testcase.
+       * g++.dg/tree-ssa/pr106922.C: Adjust.
+
+2022-09-22  Richard Biener  <rguenther@suse.de>
+
+       PR tree-optimization/99407
+       * gcc.dg/vect/tsvc/vect-tsvc-s243.c: Remove XFAIL.
+
+2022-09-22  liuhongt  <hongtao.liu@intel.com>
+
+       * gcc.target/i386/pr106994.c: New test.
+
 2022-09-21  Richard Biener  <rguenther@suse.de>
 
        PR tree-optimization/106984
index 7c434c9363d1fe72b99095aa3cf8f1139f8f2435..9ebfaa0ad3df9e9c650ace0c8e0ca388f1ce178d 100644 (file)
@@ -1,3 +1,10 @@
+2022-09-22  Thomas Neumann  <tneumann@users.sourceforge.net>
+
+       * unwind-dw2-fde.c: (release_register_frames) Remember
+       when the btree has been destroyed.
+       (__deregister_frame_info_bases) Disable the assert when
+       shutting down.
+
 2022-09-18  Thomas Neumann  <tneumann@users.sourceforge.net>
 
        * unwind-dw2-fde.c: Replace uintptr_t with typedef
index 736288f190e658ff6c48fe79f4ff12154bda6a46..f5373727b79726fe45b73e27db50b57f0115ade4 100644 (file)
@@ -1,3 +1,7 @@
+2022-09-22  Jonathan Wakely  <jwakely@redhat.com>
+
+       * README: Replace gcc-bugs email address with Bugzilla URL.
+
 2022-08-25  Martin Liska  <mliska@suse.cz>
 
        * configure: Regenerate.
index dcd90b54924b19fc79e73d17c45ce1adaa1de156..3890e53de649d401255e88fac531559451b14491 100644 (file)
@@ -1,3 +1,92 @@
+2022-09-22  Jonathan Wakely  <jwakely@redhat.com>
+
+       * include/std/bitset (bitset): Add constexpr for C++23. Guard
+       members using std::string with _GLIBCXX_HOSTED.
+       * include/std/version (__cpp_lib_constexpr_bitset): Define.
+       * testsuite/20_util/bitset/access/constexpr.cc: New test.
+       * testsuite/20_util/bitset/cons/constexpr_c++23.cc: New test.
+       * testsuite/20_util/bitset/count/constexpr.cc: New test.
+       * testsuite/20_util/bitset/ext/constexpr.cc: New test.
+       * testsuite/20_util/bitset/operations/constexpr_c++23.cc: New test.
+       * testsuite/20_util/bitset/version.cc: New test.
+
+2022-09-22  Jonathan Wakely  <jwakely@redhat.com>
+
+       * testsuite/23_containers/bitset/18604.cc: Moved to...
+       * testsuite/20_util/bitset/18604.cc: ...here.
+       * testsuite/23_containers/bitset/45713.cc: Moved to...
+       * testsuite/20_util/bitset/45713.cc: ...here.
+       * testsuite/23_containers/bitset/to_string/dr396.cc: Moved to...
+       * testsuite/20_util/bitset/access/dr396.cc: ...here.
+       * testsuite/23_containers/bitset/to_string/1.cc: Moved to...
+       * testsuite/20_util/bitset/access/to_string.cc: ...here.
+       * testsuite/23_containers/bitset/to_ullong/1.cc: Moved to...
+       * testsuite/20_util/bitset/access/to_ullong.cc: ...here.
+       * testsuite/23_containers/bitset/to_ulong/1.cc: Moved to...
+       * testsuite/20_util/bitset/access/to_ulong.cc: ...here.
+       * testsuite/23_containers/bitset/cons/1.cc: Moved to...
+       * testsuite/20_util/bitset/cons/1.cc: ...here.
+       * testsuite/23_containers/bitset/cons/16020.cc: Moved to...
+       * testsuite/20_util/bitset/cons/16020.cc: ...here.
+       * testsuite/23_containers/bitset/cons/2.cc: Moved to...
+       * testsuite/20_util/bitset/cons/2.cc: ...here.
+       * testsuite/23_containers/bitset/cons/3.cc: Moved to...
+       * testsuite/20_util/bitset/cons/3.cc: ...here.
+       * testsuite/23_containers/bitset/cons/38244.cc: Moved to...
+       * testsuite/20_util/bitset/cons/38244.cc: ...here.
+       * testsuite/23_containers/bitset/cons/50268.cc: Moved to...
+       * testsuite/20_util/bitset/cons/50268.cc: ...here.
+       * testsuite/23_containers/bitset/cons/6282.cc: Moved to...
+       * testsuite/20_util/bitset/cons/6282.cc: ...here.
+       * testsuite/23_containers/bitset/cons/constexpr.cc: Moved to...
+       * testsuite/20_util/bitset/cons/constexpr.cc: ...here.
+       * testsuite/23_containers/bitset/cons/dr1325-1.cc: Moved to...
+       * testsuite/20_util/bitset/cons/dr1325-1.cc: ...here.
+       * testsuite/23_containers/bitset/cons/dr1325-2.cc: Moved to...
+       * testsuite/20_util/bitset/cons/dr1325-2.cc: ...here.
+       * testsuite/23_containers/bitset/cons/dr396.cc: Moved to...
+       * testsuite/20_util/bitset/cons/dr396.cc: ...here.
+       * testsuite/23_containers/bitset/debug/invalidation/1.cc: Moved to...
+       * testsuite/20_util/bitset/debug/invalidation/1.cc: ...here.
+       * testsuite/23_containers/bitset/ext/15361.cc: Moved to...
+       * testsuite/20_util/bitset/ext/15361.cc: ...here.
+       * testsuite/23_containers/bitset/hash/1.cc: Moved to...
+       * testsuite/20_util/bitset/hash/1.cc: ...here.
+       * testsuite/23_containers/bitset/input/1.cc: Moved to...
+       * testsuite/20_util/bitset/io/input.cc: ...here.
+       * testsuite/23_containers/bitset/count/6124.cc: Moved to...
+       * testsuite/20_util/bitset/observers/6124.cc: ...here.
+       * testsuite/23_containers/bitset/all/1.cc: Moved to...
+       * testsuite/20_util/bitset/observers/all.cc: ...here.
+       * testsuite/23_containers/bitset/test/1.cc: Moved to...
+       * testsuite/20_util/bitset/observers/test.cc: ...here.
+       * testsuite/23_containers/bitset/operations/1.cc: Moved to...
+       * testsuite/20_util/bitset/operations/1.cc: ...here.
+       * testsuite/23_containers/bitset/operations/13838.cc: Moved to...
+       * testsuite/20_util/bitset/operations/13838.cc: ...here.
+       * testsuite/23_containers/bitset/operations/2.cc: Moved to...
+       * testsuite/20_util/bitset/operations/2.cc: ...here.
+       * testsuite/23_containers/bitset/operations/96303.cc: Moved to...
+       * testsuite/20_util/bitset/operations/96303.cc: ...here.
+       * testsuite/23_containers/bitset/operations/constexpr-2.cc: Moved to...
+       * testsuite/20_util/bitset/operations/constexpr-2.cc: ...here.
+       * testsuite/23_containers/bitset/operations/constexpr.cc: Moved to...
+       * testsuite/20_util/bitset/operations/constexpr.cc: ...here.
+       * testsuite/23_containers/bitset/requirements/constexpr_functions.cc: Moved to...
+       * testsuite/20_util/bitset/requirements/constexpr_functions.cc: ...here.
+       * testsuite/23_containers/bitset/requirements/explicit_instantiation/1.cc: Moved to...
+       * testsuite/20_util/bitset/requirements/explicit_instantiation/1.cc: ...here.
+       * testsuite/23_containers/bitset/requirements/explicit_instantiation/1_c++0x.cc: Moved to...
+       * testsuite/20_util/bitset/requirements/explicit_instantiation/1_c++0x.cc: ...here.
+       * testsuite/23_containers/headers/bitset/synopsis.cc: Moved to...
+       * testsuite/20_util/headers/bitset/synopsis.cc: ...here.
+
+2022-09-22  François Dumont  <fdumont@gcc.gnu.org>
+
+       * python/libstdcxx/v6/printers.py: Remove ptinter registration for non-existing
+       types std::__debug::unique_ptr, std::__debug::stack, std::__debug::queue,
+       std::__debug::priority_queue.
+
 2022-09-21  Jonathan Wakely  <jwakely@redhat.com>
 
        PR libstdc++/91456