public inbox for libstdc++-cvs@sourceware.org
help / color / mirror / Atom feed
From: GCC Administrator <gccadmin@gcc.gnu.org>
To: gcc-cvs@gcc.gnu.org, libstdc++-cvs@gcc.gnu.org
Subject: [gcc r12-7235] Daily bump.
Date: Tue, 15 Feb 2022 00:17:14 +0000 (GMT)	[thread overview]
Message-ID: <20220215001714.9CCE33858C27@sourceware.org> (raw)

https://gcc.gnu.org/g:1f8a09d2f3c69fff32729c4fa0680c4621babb83

commit r12-7235-g1f8a09d2f3c69fff32729c4fa0680c4621babb83
Author: GCC Administrator <gccadmin@gcc.gnu.org>
Date:   Tue Feb 15 00:16:41 2022 +0000

    Daily bump.

Diff:
---
 gcc/ChangeLog           | 37 +++++++++++++++++++++++++++++++++++++
 gcc/DATESTAMP           |  2 +-
 gcc/c-family/ChangeLog  |  6 ++++++
 gcc/cp/ChangeLog        |  6 ++++++
 gcc/fortran/ChangeLog   |  6 ++++++
 gcc/testsuite/ChangeLog | 36 ++++++++++++++++++++++++++++++++++++
 libstdc++-v3/ChangeLog  | 30 ++++++++++++++++++++++++++++++
 7 files changed, 122 insertions(+), 1 deletion(-)

diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 512954b1019..a8e9992156d 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,40 @@
+2022-02-14  Martin Sebor  <msebor@redhat.com>
+
+	PR middle-end/104355
+	* doc/invoke.texi (-Warray-bounds): Update documentation.
+
+2022-02-14  Michael Meissner  <meissner@the-meissners.org>
+
+	PR target/104253
+	* config/rs6000/rs6000.cc (init_float128_ibm): Update the
+	conversion functions used to convert IFmode types.
+
+2022-02-14  Andrew Stubbs  <ams@codesourcery.com>
+
+	* config/gcn/gcn.cc (gcn_expand_reduc_scalar): Use force_reg.
+
+2022-02-14  Richard Biener  <rguenther@suse.de>
+
+	PR tree-optimization/104528
+	* tree-ssa.h (find_released_ssa_name): Declare.
+	* tree-ssa.cc (find_released_ssa_name): Export.
+	* cfgloop.cc (verify_loop_structure): Look for released
+	SSA names in loops nb_iterations.
+	* tree-ssa-dse.cc (pass_dse::execute): Release number of iteration
+	estimates.
+
+2022-02-14  Richard Biener  <rguenther@suse.de>
+
+	PR tree-optimization/104511
+	* tree-ssa-forwprop.cc (simplify_vector_constructor): Avoid
+	touching DFP <-> FP conversions.
+
+2022-02-14  Richard Biener  <rguenther@suse.de>
+
+	PR middle-end/104497
+	* gimplify.cc (gimplify_compound_lval): Make sure the
+	base is a non-register if needed and possible.
+
 2022-02-13  liuhongt  <hongtao.liu@intel.com>
 
 	PR target/103771
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index b522c6ad39a..e2cc64fb440 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20220214
+20220215
diff --git a/gcc/c-family/ChangeLog b/gcc/c-family/ChangeLog
index 78f6f6f00f4..340e2c0d298 100644
--- a/gcc/c-family/ChangeLog
+++ b/gcc/c-family/ChangeLog
@@ -1,3 +1,9 @@
+2022-02-14  Richard Biener  <rguenther@suse.de>
+
+	PR c/104505
+	* c-pretty-print.cc (c_pretty_printer::postfix_expression): Handle
+	internal function calls.
+
 2022-02-11  Richard Biener  <rguenther@suse.de>
 
 	* c-attribs.cc (c_common_attribute_table): Add entry for
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index 1db66a72060..f27a791591b 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,9 @@
+2022-02-14  Jakub Jelinek  <jakub@redhat.com>
+
+	PR c++/104513
+	* constexpr.cc (potential_constant_expression_1) <case GOTO_EXPR>:
+	Don't punt if returns (target).
+
 2022-02-11  Jakub Jelinek  <jakub@redhat.com>
 
 	PR c++/104472
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog
index 418b5ebec2b..6f468359a08 100644
--- a/gcc/fortran/ChangeLog
+++ b/gcc/fortran/ChangeLog
@@ -1,3 +1,9 @@
+2022-02-14  Harald Anlauf  <anlauf@gmx.de>
+
+	PR fortran/104211
+	* expr.cc (find_array_section): Replace assertion by error
+	recovery when encountering bad array constructor.
+
 2022-02-13  Mikael Morin  <mikael@gcc.gnu.org>
 
 	PR fortran/104228
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 4de26b3d3af..b6d97861417 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,39 @@
+2022-02-14  Michael Meissner  <meissner@the-meissners.org>
+
+	PR target/104253
+	* gcc.target/powerpc/pr104253.c: New test.
+
+2022-02-14  Harald Anlauf  <anlauf@gmx.de>
+
+	PR fortran/104211
+	* gfortran.dg/pr104211.f90: New test.
+
+2022-02-14  Jakub Jelinek  <jakub@redhat.com>
+
+	PR c++/104513
+	* g++.dg/cpp1y/constexpr-104513.C: New test.
+	* g++.dg/cpp2a/constexpr-dtor12.C: New test.
+
+2022-02-14  Richard Biener  <rguenther@suse.de>
+
+	PR tree-optimization/104528
+	* gfortran.dg/pr104528.f: New testcase.
+
+2022-02-14  Richard Biener  <rguenther@suse.de>
+
+	PR tree-optimization/104511
+	* gcc.dg/pr104511.c: New testcase.
+
+2022-02-14  Richard Biener  <rguenther@suse.de>
+
+	PR c/104505
+	* c-c++-common/pr104505.c: New testcase.
+
+2022-02-14  Richard Biener  <rguenther@suse.de>
+
+	PR middle-end/104497
+	* c-c++-common/torture/pr104497.c: New testcase.
+
 2022-02-13  Mikael Morin  <mikael@gcc.gnu.org>
 
 	PR fortran/104228
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 5ed0e0f5f28..195c4702bad 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,33 @@
+2022-02-14  Jonathan Wakely  <jwakely@redhat.com>
+
+	PR libstdc++/100912
+	* config/locale/gnu/c_locale.h (__convert_from_v): Use inline
+	namespace for IEEE128 long double mode.
+	* config/os/gnu-linux/ldbl-ieee128-extra.ver: Add new symbol
+	version and export __gnu_cxx_ieee128::__convert_from_v.
+	* include/bits/locale_facets_nonio.tcc (money_put::__do_put):
+	Make __ibm128 overload use snprintf directly
+	* testsuite/util/testsuite_abi.cc: Add new symbol version.
+	Remove stable IEEE128/LDBL versions.
+
+2022-02-14  Jonathan Wakely  <jwakely@redhat.com>
+
+	PR libstdc++/103891
+	* include/bits/c++config (_GLIBCXX_HAVE_COND_TRIVIAL_SPECIAL_MEMBERS):
+	Remove.
+	* include/std/variant: Check feature test macros instead.
+	* include/std/version: Likewise.
+
+2022-02-14  Jonathan Wakely  <jwakely@redhat.com>
+
+	* testsuite/20_util/unsynchronized_pool_resource/allocate.cc:
+	Fix typo.
+
+2022-02-14  Jonathan Wakely  <jwakely@redhat.com>
+
+	* src/c++17/floating_to_chars.cc (FLOAT128_TO_CHARS): Depend on
+	LONG_DOUBLE_ALT128_COMPAT instead of USE_FLOAT128.
+
 2022-02-11  Jonathan Wakely  <jwakely@redhat.com>
 
 	* testsuite/20_util/temporary_buffer.cc: Fix dg-warning target


                 reply	other threads:[~2022-02-15  0:17 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20220215001714.9CCE33858C27@sourceware.org \
    --to=gccadmin@gcc.gnu.org \
    --cc=gcc-cvs@gcc.gnu.org \
    --cc=libstdc++-cvs@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).