Daily bump.
authorGCC Administrator <gccadmin@gcc.gnu.org>
Tue, 3 May 2022 00:16:25 +0000 (00:16 +0000)
committerGCC Administrator <gccadmin@gcc.gnu.org>
Tue, 3 May 2022 00:16:25 +0000 (00:16 +0000)
gcc/ChangeLog
gcc/DATESTAMP
gcc/cp/ChangeLog
gcc/fortran/ChangeLog
gcc/testsuite/ChangeLog
libgcc/ChangeLog
libstdc++-v3/ChangeLog

index 62c523b..eed4ccd 100644 (file)
@@ -1,3 +1,41 @@
+2022-05-02  Richard Biener  <rguenther@suse.de>
+
+       * tree-scalar-evolution.cc (expression_expensive_p):
+       Never consider mismatched calls as cheap.
+
+2022-05-02  Richard Biener  <rguenther@suse.de>
+
+       PR tree-optimization/104240
+       * tree-vect-slp.cc (op1_op0_map): New.
+       (vect_get_operand_map): Handle compares.
+       (vect_build_slp_tree_1): Support swapped operands for
+       tcc_comparison.
+
+2022-05-02  Jakub Jelinek  <jakub@redhat.com>
+
+       PR debug/105415
+       * cfgexpand.cc (expand_debug_expr): Don't make_decl_rtl_for_debug
+       if there is no symtab node for the VAR_DECL.
+
+2022-05-02  Sebastian Huber  <sebastian.huber@embedded-brains.de>
+
+       * gcov-io.cc (gcov_rewrite):  Clear the file error status.
+
+2022-05-02  Richard Biener  <rguenther@suse.de>
+
+       PR tree-optimization/105437
+       * tree-vect-slp.cc (vect_schedule_slp_node): Handle the
+       case where last_stmt alters control flow.
+
+2022-05-02  Richard Biener  <rguenther@suse.de>
+
+       * dojump.cc (do_jump): Use CASE_CONVERT.
+       * tree-ssa-dom.cc (edge_info::derive_equivalences): Likewise.
+
+2022-05-02  Jakub Jelinek  <jakub@redhat.com>
+
+       * system.h: Include initializer_list.
+
 2022-05-01  Segher Boessenkool  <segher@kernel.crashing.org>
 
        * config/rs6000/constraints.md (Y constraint): Fix comment.
index 7a2ec65..22a3091 100644 (file)
@@ -1 +1 @@
-20220502
+20220503
index 572ff76..98ae74c 100644 (file)
@@ -1,3 +1,25 @@
+2022-05-02  Jason Merrill  <jason@redhat.com>
+
+       * pt.cc (tsubst_copy_and_build) [TEMPLATE_ID_EXPR]: Copy location.
+       (do_auto_deduction): Use expr location.
+
+2022-05-02  Jason Merrill  <jason@redhat.com>
+
+       * class.cc (maybe_note_name_used_in_class): Note in all enclosing
+       classes.  Remember location of use.
+       (note_name_declared_in_class): Adjust.
+
+2022-05-02  Marek Polacek  <polacek@redhat.com>
+
+       * cp-tree.h (uses_template_parms): Adjust declaration.
+       * pt.cc (uses_template_parms): Return bool.  Use a RAII sentinel.
+
+2022-05-02  Richard Biener  <rguenther@suse.de>
+
+       * constexpr.cc (fold_simple_1): Use CASE_CONVERT.
+       * cp-gimplify.cc (cp_fold): Likewise.
+       * pt.cc (tsubst_copy): Likewise.
+
 2022-04-29  Jason Merrill  <jason@redhat.com>
 
        PR c++/91618
index fa58d47..fbae4f0 100644 (file)
@@ -1,3 +1,17 @@
+2022-05-02  Sandra Loosemore  <sandra@codesourcery.com>
+
+       * trans-openmp.cc (gfc_trans_omp_critical): Set location on OMP
+       tree node.
+       (gfc_trans_omp_do): Likewise.
+       (gfc_trans_omp_masked): Likewise.
+       (gfc_trans_omp_do_simd): Likewise.
+       (gfc_trans_omp_scope): Likewise.
+       (gfc_trans_omp_taskgroup): Likewise.
+       (gfc_trans_omp_taskwait): Likewise.
+       (gfc_trans_omp_distribute): Likewise.
+       (gfc_trans_omp_taskloop): Likewise.
+       (gfc_trans_omp_master_masked_taskloop): Likewise.
+
 2022-04-29  Thomas Koenig  <tkoenig@gcc.gnu.org>
 
        * gfortran.texi: Fix exchanged period and letter.
index 86f2ac5..4646b72 100644 (file)
@@ -1,3 +1,41 @@
+2022-05-02  Jason Merrill  <jason@redhat.com>
+
+       * g++.dg/cpp2a/lambda-pack-init7.C: Check column number.
+
+2022-05-02  Jason Merrill  <jason@redhat.com>
+
+       * g++.dg/lookup/name-clash13.C: New test.
+       * g++.dg/lookup/name-clash14.C: New test.
+       * g++.dg/lookup/name-clash15.C: New test.
+       * g++.dg/lookup/name-clash16.C: New test.
+
+2022-05-02  H.J. Lu  <hjl.tools@gmail.com>
+
+       PR testsuite/105433
+       * gcc.target/i386/iamcu/asm-support.S: Add .note.GNU-stack.
+       * gcc.target/x86_64/abi/asm-support.S: Likewise.
+       * gcc.target/x86_64/abi/avx/asm-support.S: Likewise.
+       * gcc.target/x86_64/abi/avx512f/asm-support.S: Likewise.
+       * gcc.target/x86_64/abi/avx512fp16/asm-support.S: Likewise.
+       * gcc.target/x86_64/abi/avx512fp16/m256h/asm-support.S: Likewise.
+       * gcc.target/x86_64/abi/avx512fp16/m512h/asm-support.S: Likewise.
+       * gcc.target/x86_64/abi/ms-sysv/do-test.S: Likewise.
+
+2022-05-02  Richard Biener  <rguenther@suse.de>
+
+       PR tree-optimization/104240
+       * gcc.dg/vect/bb-slp-pr104240.c: New testcase.
+
+2022-05-02  Jakub Jelinek  <jakub@redhat.com>
+
+       PR debug/105415
+       * gcc.dg/pr105415.c: New test.
+
+2022-05-02  Richard Biener  <rguenther@suse.de>
+
+       PR tree-optimization/105437
+       * g++.dg/vect/pr105437.cc: New testcase.
+
 2022-04-30  Jason Merrill  <jason@redhat.com>
 
        PR c/100545
index f597666..5141ce5 100644 (file)
@@ -1,3 +1,7 @@
+2022-05-02  Martin Liska  <mliska@suse.cz>
+
+       * libgcov-driver.c: Add ATTRIBUTE_UNUSED.
+
 2022-04-28  Sebastian Huber  <sebastian.huber@embedded-brains.de>
 
        * libgcov-util.c (ftw_read_file): Improve notice using xstrerror().
index 323ebc9..6a9fcd3 100644 (file)
@@ -1,3 +1,18 @@
+2022-05-02  Patrick Palka  <ppalka@redhat.com>
+
+       PR libstdc++/103911
+       * src/c++17/floating_from_chars.cc (find_end_of_float): Accept
+       two delimeters for the exponent part in the form of a possibly
+       NULL string of length two.  Don't use std::tolower.
+       (pattern): Adjust calls to find_end_of_float accordingly.
+
+2022-05-02  Patrick Palka  <ppalka@redhat.com>
+
+       PR libstdc++/105441
+       * src/c++17/floating_from_chars.cc (__floating_from_chars_hex):
+       Also accept 'P' as the start of the exponent.
+       * testsuite/20_util/from_chars/7.cc: Add corresponding testcase.
+
 2022-04-29  Jonathan Wakely  <jwakely@redhat.com>
 
        PR libstdc++/105417