Daily bump.
authorGCC Administrator <gccadmin@gcc.gnu.org>
Wed, 30 Nov 2022 00:17:59 +0000 (00:17 +0000)
committerGCC Administrator <gccadmin@gcc.gnu.org>
Wed, 30 Nov 2022 00:17:59 +0000 (00:17 +0000)
gcc/ChangeLog
gcc/DATESTAMP
gcc/cp/ChangeLog
gcc/fortran/ChangeLog
gcc/testsuite/ChangeLog
libstdc++-v3/ChangeLog

index cb36d8b..90f6649 100644 (file)
@@ -1,3 +1,38 @@
+2022-11-29  Richard Biener  <rguenther@suse.de>
+
+       PR tree-optimization/107852
+       * tree-ssa-sccvn.cc (visit_phi): Use equivalences recorded
+       as predicated values to elide more redundant PHIs.
+
+2022-11-29  Richard Biener  <rguenther@suse.de>
+
+       PR tree-optimization/106995
+       * tree-if-conv.cc (pass_if_conversion::execute): Also redirect the
+       versioning condition to the original loop if this very loop
+       vanished during CFG cleanup.
+
+2022-11-29  Richard Biener  <rguenther@suse.de>
+
+       PR tree-optimization/107898
+       * gimple-ssa-warn-alloca.cc (alloca_call_type): Check
+       the type of the alloca argument is compatible with size_t
+       before querying ranges.
+
+2022-11-29  Richard Biener  <rguenther@suse.de>
+
+       PR ipa/107897
+       * multiple_target.cc (pass_target_clone::gate): Disable
+       after errors.
+
+2022-11-29  Martin Liska  <mliska@suse.cz>
+
+       * configure: Regenerate.
+
+2022-11-29  YunQiang Su  <yunqiang.su@cipunited.com>
+
+       * configure.ac: add description for
+       AC_DEFINE(ENABLE_MULTIARCH, 1)
+
 2022-11-28  Andrew Pinski  <apinski@marvell.com>
 
        * match.pd ((A / (1 << B)) -> (A >> B).):
index 7063790..e6a7597 100644 (file)
@@ -1 +1 @@
-20221129
+20221130
index 8dbaede..02274f6 100644 (file)
@@ -1,3 +1,12 @@
+2022-11-29  Patrick Palka  <ppalka@redhat.com>
+
+       PR c++/107864
+       * decl.cc (function_requirements_equivalent_p): Don't check
+       DECL_TEMPLATE_SPECIALIZATION.
+       * pt.cc (determine_specialization): Propagate constraints when
+       specializing a function template too.  Simplify by using
+       add_outermost_template_args.
+
 2022-11-28  Jason Merrill  <jason@redhat.com>
 
        PR c++/101733
index ba7c048..e3d6684 100644 (file)
@@ -1,3 +1,13 @@
+2022-11-29  Harald Anlauf  <anlauf@gmx.de>
+           Steven G. Kargl  <kargl@gcc.gnu.org>
+
+       PR fortran/107874
+       * simplify.cc (gfc_simplify_merge): When simplifying MERGE with a
+       constant scalar MASK, ensure that arguments TSOURCE and FSOURCE are
+       either constant or will be evaluated.
+       * trans-intrinsic.cc (gfc_conv_intrinsic_merge): Evaluate arguments
+       before generating conditional expression.
+
 2022-11-28  Harald Anlauf  <anlauf@gmx.de>
 
        PR fortran/107819
index 850b32d..0660d56 100644 (file)
@@ -1,3 +1,31 @@
+2022-11-29  Harald Anlauf  <anlauf@gmx.de>
+           Steven G. Kargl  <kargl@gcc.gnu.org>
+
+       PR fortran/107874
+       * gfortran.dg/merge_init_expr_2.f90: Adjust code to the corrected
+       simplification.
+       * gfortran.dg/merge_1.f90: New test.
+
+2022-11-29  Patrick Palka  <ppalka@redhat.com>
+
+       PR c++/107864
+       * g++.dg/concepts/explicit-spec1a.C: New test.
+
+2022-11-29  Richard Biener  <rguenther@suse.de>
+
+       PR tree-optimization/107852
+       * gcc.dg/tree-ssa/ssa-fre-101.c: New testcase.
+
+2022-11-29  Eric Botcazou  <ebotcazou@adacore.com>
+
+       * gcc.dg/ipa/iinline-attr.c: XFAIL on SPARC.
+       * gcc.dg/signbit-2.c: Replace vect_int selector by vect_shift.
+
+2022-11-29  Eric Botcazou  <ebotcazou@adacore.com>
+
+       PR ada/107810
+       * gnat.dg/unchecked_convert9.adb: Adjust pattern.
+
 2022-11-28  Jason Merrill  <jason@redhat.com>
 
        PR c++/101733
index 9937419..8c764b6 100644 (file)
@@ -1,3 +1,30 @@
+2022-11-29  Jonathan Wakely  <jwakely@redhat.com>
+
+       PR libstdc++/107852
+       PR libstdc++/106199
+       PR libstdc++/100366
+       * include/bits/vector.tcc (vector::_M_fill_insert): Copy
+       _M_start and _M_finish members before allocating.
+       (vector::_M_default_append): Likewise.
+       (vector::_M_range_insert): Likewise.
+
+2022-11-29  Jonathan Wakely  <jwakely@redhat.com>
+
+       * include/bits/stl_iterator_base_types.h (__iterator_category):
+       Add always_inline attribute.
+       * include/bits/stl_vector.h (assign(Iter, Iter)): Call
+       _M_assign_aux directly, instead of _M_assign_dispatch.
+       (insert(const_iterator, Iter, Iter)): Call _M_range_insert
+       directly instead of _M_insert_dispatch.
+
+2022-11-29  Jonathan Wakely  <jwakely@redhat.com>
+
+       * include/std/format: Rename all variables called __used or
+       __packed.
+       * testsuite/17_intro/badnames.cc: Add no_pch options.
+       * testsuite/17_intro/names.cc: Check __packed, __unused and
+       __used.
+
 2022-11-28  François Dumont  <fdumont@gcc.gnu.org>
 
        * testsuite/20_util/function/cons/70692.cc: Adapt dg-error message.