Daily bump.

This commit is contained in:
GCC Administrator 2022-05-29 00:16:31 +00:00
parent 919822adc9
commit 37b3b5dabd
10 changed files with 99 additions and 1 deletions

View File

@ -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.

View File

@ -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.

View File

@ -1 +1 @@
20220528
20220529

View File

@ -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

View File

@ -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.

View File

@ -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

View File

@ -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>

View File

@ -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

View File

@ -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

View File

@ -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