public inbox for gcc-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-5795] Daily bump.
Date: Sun,  5 Dec 2021 00:17:05 +0000 (GMT)	[thread overview]
Message-ID: <20211205001705.9FE583858C2C@sourceware.org> (raw)

https://gcc.gnu.org/g:70e4cb66c1a12cabb78abec13013ef7263180923

commit r12-5795-g70e4cb66c1a12cabb78abec13013ef7263180923
Author: GCC Administrator <gccadmin@gcc.gnu.org>
Date:   Sun Dec 5 00:16:28 2021 +0000

    Daily bump.

Diff:
---
 gcc/ChangeLog           | 12 ++++++++++++
 gcc/DATESTAMP           |  2 +-
 gcc/cp/ChangeLog        |  9 +++++++++
 gcc/fortran/ChangeLog   | 15 +++++++++++++++
 gcc/testsuite/ChangeLog | 44 ++++++++++++++++++++++++++++++++++++++++++++
 libcpp/ChangeLog        |  7 +++++++
 libgomp/ChangeLog       |  8 ++++++++
 libstdc++-v3/ChangeLog  |  7 +++++++
 8 files changed, 103 insertions(+), 1 deletion(-)

diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 1ec70dff205..de2038a109a 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,15 @@
+2021-12-04  Jakub Jelinek  <jakub@redhat.com>
+
+	* config/i386/x86-tune.def (X86_TUNE_PARTIAL_REG_DEPENDENCY): Fix
+	comment typo, Preffer -> prefer.
+	* ipa-modref-tree.c (modref_access_node::closer_pair_p): Likewise.
+
+2021-12-04  Alexandre Oliva  <oliva@adacore.com>
+
+	PR rtl-optimization/103028
+	* ifcvt.c (find_cond_trap): Validate new insns more strictly
+	after reload.
+
 2021-12-03  Martin Liska  <mliska@suse.cz>
 	    Peter Bergner  <bergner@linux.ibm.com>
 
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index bd5f263600a..4b1cdcc57eb 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20211204
+20211205
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index b36ba4a2886..da2973a8938 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,12 @@
+2021-12-04  Jakub Jelinek  <jakub@redhat.com>
+
+	* cp-tree.h (is_byte_access_type_not_plain_char): Declare.
+	* tree.c (is_byte_access_type_not_plain_char): New function.
+	* constexpr.c (clear_uchar_or_std_byte_in_mask): New function.
+	(cxx_eval_bit_cast): Don't error about padding bits if target
+	type is unsigned char or std::byte, instead return no clearing
+	ctor.  Use clear_uchar_or_std_byte_in_mask.
+
 2021-12-03  Jason Merrill  <jason@redhat.com>
 
 	* error.c (current_dump_scope): New variable.
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog
index 3962bbaf380..3fdf4fd6979 100644
--- a/gcc/fortran/ChangeLog
+++ b/gcc/fortran/ChangeLog
@@ -1,3 +1,18 @@
+2021-12-04  Tobias Burnus  <tobias@codesourcery.com>
+
+	* dump-parse-tree.c (show_omp_clauses): Handle
+	weak/compare/fail clause.
+	* gfortran.h (gfc_omp_clauses): Add weak, compare, fail.
+	* openmp.c (enum omp_mask1, gfc_match_omp_clauses,
+	OMP_ATOMIC_CLAUSES): Update for new clauses.
+	(gfc_match_omp_atomic): Update for 5.1 atomic changes.
+	(is_conversion): Support widening in one go.
+	(is_scalar_intrinsic_expr): New.
+	(resolve_omp_atomic): Update for 5.1 atomic changes.
+	* parse.c (parse_omp_oacc_atomic): Update for compare.
+	* resolve.c (gfc_resolve_blocks): Update asserts.
+	* trans-openmp.c (gfc_trans_omp_atomic): Handle new clauses.
+
 2021-12-03  Harald Anlauf  <anlauf@gmx.de>
 	    Steven G. Kargl  <kargl@gcc.gnu.org>
 
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 5d29c353d5f..b24fd47943e 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,47 @@
+2021-12-04  Marek Polacek  <polacek@redhat.com>
+
+	PR c++/93614
+	* g++.dg/template/lookup18.C: New test.
+
+2021-12-04  Tobias Burnus  <tobias@codesourcery.com>
+
+	* gfortran.dg/gomp/atomic-2.f90: Move now supported code to ...
+	* gfortran.dg/gomp/atomic.f90: here.
+	* gfortran.dg/gomp/atomic-10.f90: New test.
+	* gfortran.dg/gomp/atomic-12.f90: New test.
+	* gfortran.dg/gomp/atomic-15.f90: New test.
+	* gfortran.dg/gomp/atomic-16.f90: New test.
+	* gfortran.dg/gomp/atomic-17.f90: New test.
+	* gfortran.dg/gomp/atomic-18.f90: New test.
+	* gfortran.dg/gomp/atomic-19.f90: New test.
+	* gfortran.dg/gomp/atomic-20.f90: New test.
+	* gfortran.dg/gomp/atomic-22.f90: New test.
+	* gfortran.dg/gomp/atomic-24.f90: New test.
+	* gfortran.dg/gomp/atomic-25.f90: New test.
+	* gfortran.dg/gomp/atomic-26.f90: New test.
+
+2021-12-04  Jakub Jelinek  <jakub@redhat.com>
+
+	* g++.dg/cpp2a/bit-cast11.C: New test.
+	* g++.dg/cpp2a/bit-cast12.C: New test.
+	* g++.dg/cpp2a/bit-cast13.C: New test.
+	* g++.dg/cpp2a/bit-cast14.C: New test.
+
+2021-12-04  Jakub Jelinek  <jakub@redhat.com>
+
+	PR preprocessor/102432
+	* c-c++-common/gomp/pr102432.c: New test.
+	* c-c++-common/goacc/pr102432.c: New test.
+
+2021-12-04  Alexandre Oliva  <oliva@adacore.com>
+
+	PR rtl-optimization/103028
+	* gcc.dg/pr103028.c: New.
+
+2021-12-04  David Edelsohn  <dje.gcc@gmail.com>
+
+	* gcc.target/powerpc/vec_reve_1.c: Require VSX.
+
 2021-12-03  Jason Merrill  <jason@redhat.com>
 
 	* g++.dg/diagnostic/scope1.C: New test.
diff --git a/libcpp/ChangeLog b/libcpp/ChangeLog
index accee55188b..88f02721aef 100644
--- a/libcpp/ChangeLog
+++ b/libcpp/ChangeLog
@@ -1,3 +1,10 @@
+2021-12-04  Jakub Jelinek  <jakub@redhat.com>
+
+	PR preprocessor/102432
+	* lex.c (_cpp_lex_direct): If buffer->need_line while
+	pfile->state.in_deferred_pragma, return CPP_PRAGMA_EOL token instead
+	of assertion failure.
+
 2021-12-03  Jakub Jelinek  <jakub@redhat.com>
 
 	PR pch/71934
diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog
index 0b4fe4ae50e..6dc6a2ff25f 100644
--- a/libgomp/ChangeLog
+++ b/libgomp/ChangeLog
@@ -1,3 +1,11 @@
+2021-12-04  Tobias Burnus  <tobias@codesourcery.com>
+
+	* libgomp.texi (OpenMP 5.1): Update status.
+
+2021-12-04  Tobias Burnus  <tobias@codesourcery.com>
+
+	* libgomp.texi (OMP_PLACES): Extend description for OMP 5.1 changes.
+
 2021-12-02  Chung-Lin Tang  <cltang@codesourcery.com>
 
 	PR fortran/90030
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 80db8906d95..3f47926604e 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,10 @@
+2021-12-04  Jonathan Wakely  <jwakely@redhat.com>
+
+	PR libstdc++/103549
+	* include/bits/regex.h (match_results): Give names to template
+	parameters in first declaration.
+	(match_results::_M_begin): Add default member-initializer.
+
 2021-12-03  Jonathan Wakely  <jwakely@redhat.com>
 
 	* include/bits/stl_tree.h (_Rb_tree::_Auto_node): Define new


                 reply	other threads:[~2021-12-05  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=20211205001705.9FE583858C2C@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).