aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGCC Administrator <gccadmin@gcc.gnu.org>2022-05-29 00:16:31 +0000
committerGCC Administrator <gccadmin@gcc.gnu.org>2022-05-29 00:16:31 +0000
commit37b3b5dabdcdbbc0d191b050116930010dd06acc (patch)
treefd5d8e448beff0725e0834bc3068315b90b9278a
parent919822adc923b00e995e8a148bdb8115a794b47b (diff)
Daily bump.
-rw-r--r--ChangeLog4
-rw-r--r--gcc/ChangeLog20
-rw-r--r--gcc/DATESTAMP2
-rw-r--r--gcc/ada/ChangeLog8
-rw-r--r--gcc/c/ChangeLog7
-rw-r--r--gcc/cp/ChangeLog13
-rw-r--r--gcc/fortran/ChangeLog9
-rw-r--r--gcc/testsuite/ChangeLog15
-rw-r--r--libbacktrace/ChangeLog5
-rw-r--r--libgomp/ChangeLog17
10 files changed, 99 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 8c42a7ca517..65a53b78ea2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2022-05-28 Bruce Korb <bkorb@gnu.org>
+
+ * .gitignore: Ignore vim swap files
+
2022-05-13 Surya Kumari Jangala <jskumari@linux.ibm.com>
* MAINTAINERS: Add myself to write after approval.
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index a196d560771..9aa53c63b7c 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,23 @@
+2022-05-28 Joel Holdsworth <jholdsworth@nvidia.com>
+
+ * config/avr/avr-mcus.def: Add device definitions.
+ * doc/avr-mmcu.texi: Corresponding changes.
+ * config/avr/gen-avr-mmcu-texi.cc: Added support for avr
+ device prefix.
+ * config/avr/gen-avr-mmcu-specs.cc: Prevent -mmcu=avr* flags
+ from leaking into cc1.
+
+2022-05-28 Vladimir Makarov <vmakarov@gcc.gnu.org>
+
+ PR target/103722
+ * config/sh/sh.cc (sh_register_move_cost): Avoid cost "2" (which
+ is special) for various scenarios.
+
+2022-05-28 Iain Sandoe <iain@sandoe.co.uk>
+
+ * config/darwin.h (REAL_LIBGCC_SPEC): Update the comment block
+ describing this macro.
+
2022-05-27 Richard Biener <rguenther@suse.de>
* tree-dfa.cc (get_ref_base_and_extent): Avoid shift.
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index d66d352d156..6f2e255c6fb 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20220528
+20220529
diff --git a/gcc/ada/ChangeLog b/gcc/ada/ChangeLog
index 0a766f2eba2..1e578c1f1b7 100644
--- a/gcc/ada/ChangeLog
+++ b/gcc/ada/ChangeLog
@@ -1,3 +1,11 @@
+2022-05-28 Alexandre Oliva <oliva@adacore.com>
+
+ * gcc-interface/Makefile.in (OSCONS_CC): Rename to...
+ (GCC_FOR_ADA_RTS): ... this. Adjust users.
+ (gnatlib): Pass it down as CC.
+ (gnatlib-shared-default): Likewise.
+ (gnatlib-shared-win32, gnatlib-shared-darwin): Likewise.
+
2022-05-19 Eric Botcazou <ebotcazou@adacore.com>
* gcc-interface/decl.cc (gnat_to_gnu_entity) <E_Constant>: Deal with
diff --git a/gcc/c/ChangeLog b/gcc/c/ChangeLog
index 291c0ddde0f..1de21dbf977 100644
--- a/gcc/c/ChangeLog
+++ b/gcc/c/ChangeLog
@@ -1,3 +1,10 @@
+2022-05-28 Jakub Jelinek <jakub@redhat.com>
+
+ * c-parser.cc (c_parser_omp_declare_target): If OMP_CLAUSE_LINK was
+ seen first, use "%<to%>" or "%<enter%>" depending on
+ OMP_CLAUSE_ENTER_TO of the current clause, otherwise use
+ "%<to%> or %<enter%>" wording.
+
2022-05-27 Jakub Jelinek <jakub@redhat.com>
* c-parser.cc (c_parser_omp_clause_name): Parse enter clause.
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index ff6657fa08c..8575393f13b 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,16 @@
+2022-05-28 Jakub Jelinek <jakub@redhat.com>
+
+ * parser.cc (handle_omp_declare_target_clause): If OMP_CLAUSE_LINK was
+ seen first, use "%<to%>" or "%<enter%>" depending on
+ OMP_CLAUSE_ENTER_TO of the current clause, otherwise use
+ "%<to%> or %<enter%>" wording.
+
+2022-05-28 Jason Merrill <jason@redhat.com>
+
+ PR c++/105652
+ * pt.cc (tsubst_lambda_expr): Don't let a namespace-scope lambda
+ instantiate into a class-scope lambda.
+
2022-05-27 Marek Polacek <polacek@redhat.com>
PR c++/105725
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog
index 59c89f65a1e..d009192f66c 100644
--- a/gcc/fortran/ChangeLog
+++ b/gcc/fortran/ChangeLog
@@ -1,3 +1,12 @@
+2022-05-28 Tobias Burnus <tobias@codesourcery.com>
+
+ * dump-parse-tree.cc (show_omp_clauses): Handle OMP_LIST_ENTER.
+ * gfortran.h: Add OMP_LIST_ENTER.
+ * openmp.cc (enum omp_mask2, OMP_DECLARE_TARGET_CLAUSES): Add
+ OMP_CLAUSE_ENTER.
+ (gfc_match_omp_clauses, gfc_match_omp_declare_target,
+ resolve_omp_clauses): Handle 'enter' clause.
+
2022-05-27 Tobias Burnus <tobias@codesourcery.com>
Chung-Lin Tang <cltang@codesourcery.com>
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 65aae885e25..df28aae7a10 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,18 @@
+2022-05-28 Tobias Burnus <tobias@codesourcery.com>
+
+ * gfortran.dg/gomp/declare-target-2.f90: Add 'enter' clause test.
+ * gfortran.dg/gomp/declare-target-4.f90: Likewise.
+
+2022-05-28 Jakub Jelinek <jakub@redhat.com>
+
+ * c-c++-common/gomp/declare-target-2.c: Add further tests for mixing of
+ link and to/enter clauses on separate directives.
+
+2022-05-28 Jason Merrill <jason@redhat.com>
+
+ PR c++/105652
+ * g++.dg/cpp2a/concepts-lambda20.C: New test.
+
2022-05-27 Marek Polacek <polacek@redhat.com>
PR c++/105725
diff --git a/libbacktrace/ChangeLog b/libbacktrace/ChangeLog
index cf5bd37e2a6..b1331d3b012 100644
--- a/libbacktrace/ChangeLog
+++ b/libbacktrace/ChangeLog
@@ -1,3 +1,8 @@
+2022-05-28 Ian Lance Taylor <iant@golang.org>
+
+ PR libbacktrace/105721
+ * README: Update.
+
2022-04-05 Ian Lance Taylor <iant@golang.org>
* elf.c (elf_zlib_inflate): Don't skip initial aligned byte in
diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog
index 8996f43aaa7..4eeb7c4f189 100644
--- a/libgomp/ChangeLog
+++ b/libgomp/ChangeLog
@@ -1,3 +1,20 @@
+2022-05-28 Tobias Burnus <tobias@codesourcery.com>
+
+ * libgomp.texi (OpenMP 5.2): Mark 'enter' clause as supported.
+ * testsuite/libgomp.fortran/declare-target-1.f90: Extend to test
+ explicit 'to' and 'enter' clause.
+ * testsuite/libgomp.fortran/declare-target-2.f90: Update accordingly.
+
+2022-05-28 Jakub Jelinek <jakub@redhat.com>
+
+ PR libgomp/105745
+ * libgomp.h (GOMP_HAVE_EFFICIENT_ALIGNED_ALLOC): Don't define for
+ defined(HAVE__ALIGNED_MALLOC) case.
+ * alloc.c (gomp_aligned_alloc): Move defined(HAVE__ALIGNED_MALLOC)
+ handling as last option before fallback instead of first.
+ (gomp_aligned_free): For defined(HAVE__ALIGNED_MALLOC) call
+ _aligned_free.
+
2022-05-27 Jakub Jelinek <jakub@redhat.com>
* testsuite/libgomp.c-c++-common/target-40.c: Modify some existing to