Daily bump.

This commit is contained in:
GCC Administrator 2022-06-01 00:16:34 +00:00
parent 4f84f12066
commit 820ead4519
12 changed files with 130 additions and 1 deletions

View file

@ -1,3 +1,24 @@
2022-05-31 Jason Merrill <jason@redhat.com>
* Makefile.in (TAGS): Look at libcpp/*.cc.
2022-05-31 Christophe Lyon <christophe.lyon@arm.com>
* config/aarch64/aarch64.cc (aarch64_gimplify_va_arg_expr):
Prefix mode names with E_.
2022-05-31 Alan Modra <amodra@gmail.com>
* dwarf2out.cc (gen_namelist_decl): Adjust to suit correct
spelling of DW_AT_namelist_item.
2022-05-31 Jakub Jelinek <jakub@redhat.com>
* omp-low.cc (build_outer_var_ref): For code == OMP_CLAUSE_ALLOCATE
allow var to be private in the outer context.
(lower_private_allocate): Pass OMP_CLAUSE_ALLOCATE as last argument
to build_outer_var_ref.
2022-05-30 Roger Sayle <roger@nextmovesoftware.com>
* config/i386/i386.cc (ix86_modes_tieable_p): Allow SCmode to be

View file

@ -1 +1 @@
20220531
20220601

View file

@ -1,3 +1,12 @@
2022-05-31 Jason Merrill <jason@redhat.com>
* Make-lang.in (c.tags): Look at *.cc.
2022-05-31 Jakub Jelinek <jakub@redhat.com>
* c-parser.cc (OMP_SCOPE_CLAUSE_MASK): Add firstprivate and allocate
clauses.
2022-05-28 Jakub Jelinek <jakub@redhat.com>
* c-parser.cc (c_parser_omp_declare_target): If OMP_CLAUSE_LINK was

View file

@ -1,3 +1,52 @@
2022-05-31 Patrick Palka <ppalka@redhat.com>
PR c++/105758
* call.cc (build_over_call): Use z_candidate::conversion_path
and ::access_path instead of TYPE_BINFO when building the
BASELINK for the templated form.
2022-05-31 Patrick Palka <ppalka@redhat.com>
* parser.cc: Use auto_timevar instead of timevar_push/pop.
Remove wrapper functions.
* pt.cc: Likewise.
2022-05-31 Patrick Palka <ppalka@redhat.com>
* cp-tree.h (cp_build_qualified_type_real): Rename to ...
(cp_build_qualified_type): ... this. Give its last parameter
a default argument. Remove macro of the same name.
* decl.cc (grokdeclarator): Adjust accordingly.
* pt.cc (tsubst_aggr_type): Likewise.
(rebuild_function_or_method_type): Likewise.
(tsubst): Likewise.
(maybe_dependent_member_ref): Likewise.
(unify): Likewise.
* tree.cc (cp_build_qualified_type_real): Rename to ...
(cp_build_qualified_type): ... this. Adjust accordingly.
2022-05-31 Jason Merrill <jason@redhat.com>
* Make-lang.in (c++.tags): Just look at *.cc.
2022-05-31 Patrick Palka <ppalka@redhat.com>
* cp-tree.h (comp_template_args): Change return type to bool.
* pt.cc (comp_template_args): Document default arguments.
Change return type to bool and adjust returns accordingly.
2022-05-31 Patrick Palka <ppalka@redhat.com>
* decl.cc (grokvardecl): Use current_template_constraints.
(grokdeclarator): Likewise.
(xref_tag): Likewise.
* semantics.cc (finish_template_template_parm): Likewise.
2022-05-31 Jakub Jelinek <jakub@redhat.com>
* parser.cc (OMP_SCOPE_CLAUSE_MASK): Add firstprivate and allocate
clauses.
2022-05-30 Marek Polacek <polacek@redhat.com>
PR c++/99080

View file

@ -1,3 +1,13 @@
2022-05-31 Jason Merrill <jason@redhat.com>
* Make-lang.in (d.tags): Just look at *.cc.
2022-05-31 Iain Buclaw <ibuclaw@gdcproject.org>
PR d/105544
* d-lang.cc (d_parse_file): Zero padding past the end of the stdin
buffer so the D lexer has a sentinel to stop parsing at.
2022-05-27 Iain Buclaw <ibuclaw@gdcproject.org>
* dmd/MERGE: Merge upstream dmd 4d07f22f2

View file

@ -1,3 +1,7 @@
2022-05-31 Jason Merrill <jason@redhat.com>
* Make-lang.in (fortran.tags): Look at *.cc.
2022-05-30 Harald Anlauf <anlauf@gmx.de>
PR fortran/91300

View file

@ -1,3 +1,7 @@
2022-05-31 Jason Merrill <jason@redhat.com>
* Make-lang.in (go.tags): Look at *.cc.
2022-02-13 Ian Lance Taylor <iant@golang.org>
* gospec.cc: Revert 2022-02-09 change:

View file

@ -1,3 +1,7 @@
2022-05-31 Jason Merrill <jason@redhat.com>
* Make-lang.in (objc.tags): Look at *.cc.
2022-05-25 Jakub Jelinek <jakub@redhat.com>
PR c/91134

View file

@ -1,3 +1,7 @@
2022-05-31 Jason Merrill <jason@redhat.com>
* Make-lang.in (obj-c++.tags): Look at *.cc.
2022-05-11 Martin Liska <mliska@suse.cz>
PR target/105355

View file

@ -1,3 +1,16 @@
2022-05-31 Patrick Palka <ppalka@redhat.com>
PR c++/105758
* g++.dg/template/non-dependent24.C: New test.
2022-05-31 Jakub Jelinek <jakub@redhat.com>
* c-c++-common/gomp/scope-5.c: New test.
* c-c++-common/gomp/scope-6.c: New test.
* g++.dg/gomp/attrs-1.C (bar): Add firstprivate and allocate clauses
to scope construct.
* g++.dg/gomp/attrs-2.C (bar): Likewise.
2022-05-30 Harald Anlauf <anlauf@gmx.de>
PR fortran/91300

View file

@ -1,3 +1,7 @@
2022-05-31 Alan Modra <amodra@gmail.com>
* dwarf2.def: Correct spelling of DW_AT_namelist_item.
2022-05-24 David Malcolm <dmalcolm@redhat.com>
* ansidecl.h: Drop macros OVERRIDE and FINAL.

View file

@ -1,3 +1,10 @@
2022-05-31 Jakub Jelinek <jakub@redhat.com>
* testsuite/libgomp.c-c++-common/allocate-1.c (foo): Add testcase for
scope construct with allocate clause.
* testsuite/libgomp.c-c++-common/allocate-3.c (foo): Likewise.
* testsuite/libgomp.c-c++-common/scope-2.c: New test.
2022-05-28 Tobias Burnus <tobias@codesourcery.com>
* libgomp.texi (OpenMP 5.2): Mark 'enter' clause as supported.