From: GCC Administrator Date: Sun, 29 May 2022 00:16:31 +0000 (+0000) Subject: Daily bump. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=37b3b5dabdcdbbc0d191b050116930010dd06acc;p=platform%2Fupstream%2Fgcc.git Daily bump. --- diff --git a/ChangeLog b/ChangeLog index 8c42a7c..65a53b7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2022-05-28 Bruce Korb + + * .gitignore: Ignore vim swap files + 2022-05-13 Surya Kumari Jangala * MAINTAINERS: Add myself to write after approval. diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a196d56..9aa53c6 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,23 @@ +2022-05-28 Joel Holdsworth + + * 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 + + 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 + + * config/darwin.h (REAL_LIBGCC_SPEC): Update the comment block + describing this macro. + 2022-05-27 Richard Biener * tree-dfa.cc (get_ref_base_and_extent): Avoid shift. diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index d66d352..6f2e255 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20220528 +20220529 diff --git a/gcc/ada/ChangeLog b/gcc/ada/ChangeLog index 0a766f2..1e578c1 100644 --- a/gcc/ada/ChangeLog +++ b/gcc/ada/ChangeLog @@ -1,3 +1,11 @@ +2022-05-28 Alexandre Oliva + + * 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 * gcc-interface/decl.cc (gnat_to_gnu_entity) : Deal with diff --git a/gcc/c/ChangeLog b/gcc/c/ChangeLog index 291c0dd..1de21db 100644 --- a/gcc/c/ChangeLog +++ b/gcc/c/ChangeLog @@ -1,3 +1,10 @@ +2022-05-28 Jakub Jelinek + + * c-parser.cc (c_parser_omp_declare_target): If OMP_CLAUSE_LINK was + seen first, use "%" or "%" depending on + OMP_CLAUSE_ENTER_TO of the current clause, otherwise use + "% or %" wording. + 2022-05-27 Jakub Jelinek * c-parser.cc (c_parser_omp_clause_name): Parse enter clause. diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index ff6657f..8575393 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,16 @@ +2022-05-28 Jakub Jelinek + + * parser.cc (handle_omp_declare_target_clause): If OMP_CLAUSE_LINK was + seen first, use "%" or "%" depending on + OMP_CLAUSE_ENTER_TO of the current clause, otherwise use + "% or %" wording. + +2022-05-28 Jason Merrill + + 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 PR c++/105725 diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index 59c89f6..d009192 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,12 @@ +2022-05-28 Tobias Burnus + + * 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 Chung-Lin Tang diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 65aae88..df28aae 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,18 @@ +2022-05-28 Tobias Burnus + + * gfortran.dg/gomp/declare-target-2.f90: Add 'enter' clause test. + * gfortran.dg/gomp/declare-target-4.f90: Likewise. + +2022-05-28 Jakub Jelinek + + * 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 + + PR c++/105652 + * g++.dg/cpp2a/concepts-lambda20.C: New test. + 2022-05-27 Marek Polacek PR c++/105725 diff --git a/libbacktrace/ChangeLog b/libbacktrace/ChangeLog index cf5bd37..b1331d3 100644 --- a/libbacktrace/ChangeLog +++ b/libbacktrace/ChangeLog @@ -1,3 +1,8 @@ +2022-05-28 Ian Lance Taylor + + PR libbacktrace/105721 + * README: Update. + 2022-04-05 Ian Lance Taylor * elf.c (elf_zlib_inflate): Don't skip initial aligned byte in diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog index 8996f43..4eeb7c4 100644 --- a/libgomp/ChangeLog +++ b/libgomp/ChangeLog @@ -1,3 +1,20 @@ +2022-05-28 Tobias Burnus + + * 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 + + 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 * testsuite/libgomp.c-c++-common/target-40.c: Modify some existing to