Daily bump.

This commit is contained in:
GCC Administrator 2021-02-20 00:16:26 +00:00
parent 14886cbe30
commit 50352c6cd2
11 changed files with 221 additions and 1 deletions

View File

@ -1,3 +1,45 @@
2021-02-19 Martin Sebor <msebor@redhat.com>
PR c/97172
* attribs.c (init_attr_rdwr_indices): Guard vblist use.
(attr_access::free_lang_data): Remove a spurious test.
2021-02-19 Nathan Sidwell <nathan@acm.org>
* doc/invoke.texi (flang-info-module-read): Document.
2021-02-19 Martin Liska <mliska@suse.cz>
PR translation/99167
* params.opt: Fix typo.
2021-02-19 Richard Biener <rguenther@suse.de>
PR middle-end/99122
* tree-inline.c (inline_forbidden_p): Do not inline functions
with VLA arguments or return value.
2021-02-19 Jakub Jelinek <jakub@redhat.com>
PR target/98998
* config/arm/arm.md (*stack_protect_combined_set_insn,
*stack_protect_combined_test_insn): If force_const_mem result
is not valid general operand, force its address into the destination
register first.
2021-02-19 Jakub Jelinek <jakub@redhat.com>
PR ipa/99034
* tree-cfg.c (gimple_merge_blocks): If bb a starts with eh landing
pad or non-local label, put FORCED_LABELs from bb b after that label
rather than before it.
2021-02-19 Andre Vieira <andre.simoesdiasvieira@arm.com>
PR target/98657
* config/aarch64/aarch64-sve.md (<ASHIFT:optab><mode>3): Use
expand_vector_broadcast' to emit the vec_duplicate operand.
2021-02-18 Vladimir N. Makarov <vmakarov@redhat.com>
PR rtl-optimization/96264

View File

@ -1 +1 @@
20210219
20210220

View File

@ -1,3 +1,7 @@
2021-02-19 Nathan Sidwell <nathan@acm.org>
* c.opt (flang-info-module-read, flang-info-module-read=): New.
2021-02-18 H.J. Lu <hjl.tools@gmail.com>
PR target/99113

View File

@ -1,3 +1,35 @@
2021-02-19 Nathan Sidwell <nathan@acm.org>
PR c++/98741
* module.cc (pending_imports): New.
(declare_module): Adjust test condition.
(name_pending_imports): New.
(preprocess_module): Reimplement using pending_imports.
(preprocessed_module): Move name-getting to name_pending_imports.
* name-lookup.c (append_imported_binding_slot): Assert module
ordering is increasing.
2021-02-19 Nathan Sidwell <nathan@acm.org>
* module.cc (note_cmis): New.
(struct module_state): Add inform_read_p bit.
(module_state::do_import): Inform of CMI location, if enabled.
(init_modules): Canonicalize note_cmis entries.
(handle_module_option): Handle -flang-info-module-read=FOO.
2021-02-19 Jason Merrill <jason@redhat.com>
PR c++/96926
* call.c (perfect_conversion_p): Limit rvalueness
test to reference bindings.
2021-02-19 Jason Merrill <jason@redhat.com>
PR c++/96926
* call.c (perfect_conversion_p): New.
(perfect_candidate_p): New.
(add_candidates): Ignore templates after a perfect non-template.
2021-02-18 Nathan Sidwell <nathan@acm.org>
PR c++/99023

View File

@ -1,3 +1,31 @@
2021-02-19 Jerry DeLisle <jvdelisle@gcc.gnu.org>
PR fortran/98686
* match.c (gfc_match_namelist): If BT_UNKNOWN, check for
IMPLICIT NONE and and issue an error, otherwise set the type
to its IMPLICIT type so that any subsequent use of objects will
will confirm their types.
2021-02-19 Harald Anlauf <anlauf@gmx.de>
* symbol.c (gfc_add_flavor): Reverse order of conditions.
2021-02-19 Tobias Burnus <tobias@codesourcery.com>
PR fortran/99010
* dependency.c (gfc_dep_resolver): Fix coarray handling.
2021-02-19 Tobias Burnus <tobias@codesourcery.com>
PR fortran/99146
* interface.c:
2021-02-19 Tobias Burnus <tobias@codesourcery.com>
PR fortran/99027
* simplify.c (simplify_bound_dim): Honor DIMEN_ELEMENT
when using dim=.
2021-02-17 Julian Brown <julian@codesourcery.com>
* openmp.c (resolve_omp_clauses): Disallow selecting components

View File

@ -1,3 +1,17 @@
2021-02-19 David Malcolm <dmalcolm@redhat.com>
PR jit/99126
* jit-builtins.c
(gcc::jit::builtins_manager::get_builtin_function_by_id):
Update assertion to reject BUILT_IN_NONE.
(gcc::jit::builtins_manager::ensure_optimization_builtins_exist):
New.
* jit-builtins.h
(gcc::jit::builtins_manager::ensure_optimization_builtins_exist):
New decl.
* jit-playback.c (gcc::jit::playback::context::replay): Call it.
Remove redundant conditional on bm.
2021-01-14 David Malcolm <dmalcolm@redhat.com>
* docs/cp/index.rst: Remove "Alpha" warning.

View File

@ -1,3 +1,13 @@
2021-02-19 Joseph Myers <joseph@codesourcery.com>
* fr.po: Update.
2021-02-19 Joseph Myers <joseph@codesourcery.com>
* be.po, da.po, de.po, el.po, es.po, fi.po, fr.po, hr.po, id.po,
ja.po, nl.po, ru.po, sr.po, sv.po, tr.po, uk.po, vi.po, zh_CN.po,
zh_TW.po: Update.
2021-02-05 Joseph Myers <joseph@codesourcery.com>
* gcc.pot: Regenerate.

View File

@ -1,3 +1,78 @@
2021-02-19 Nathan Sidwell <nathan@acm.org>
PR c++/98741
* g++.dg/modules/pr98741_a.H: New.
* g++.dg/modules/pr98741_b.H: New.
* g++.dg/modules/pr98741_c.C: New.
* g++.dg/modules/pr98741_d.C: New.
2021-02-19 Jerry DeLisle <jvdelisle@gcc.gnu.org>
PR fortran/98686
* gfortran.dg/namelist_4.f90: Modify.
* gfortran.dg/namelist_98.f90: New test.
2021-02-19 Martin Sebor <msebor@redhat.com>
PR c/97172
* gcc.dg/pr97172.c: Add test cases.
2021-02-19 Nathan Sidwell <nathan@acm.org>
* g++.dg/modules/pr99166_a.X: New.
* g++.dg/modules/pr99166_b.C: New.
* g++.dg/modules/pr99166_c.C: New.
* g++.dg/modules/pr99166_d.C: New.
2021-02-19 Tobias Burnus <tobias@codesourcery.com>
PR fortran/99010
* gfortran.dg/coarray/array_temporary-1.f90: New test.
2021-02-19 Tobias Burnus <tobias@codesourcery.com>
PR fortran/99146
* gfortran.dg/dtio_36.f90: New test.
2021-02-19 Richard Biener <rguenther@suse.de>
PR middle-end/99122
* gcc.dg/pr99122-3.c: New testcase.
2021-02-19 Jakub Jelinek <jakub@redhat.com>
PR target/98998
* gcc.target/arm/pure-code/pr98998.c: New test.
2021-02-19 Jakub Jelinek <jakub@redhat.com>
PR ipa/99034
* g++.dg/opt/pr99034.C: New test.
2021-02-19 Tobias Burnus <tobias@codesourcery.com>
PR fortran/99027
* gfortran.dg/ubound_1.f90: New test.
2021-02-19 Andre Vieira <andre.simoesdiasvieira@arm.com>
PR target/98657
* gcc.target/aarch64/sve/pr98657.c: New test.
2021-02-19 Jason Merrill <jason@redhat.com>
* g++.dg/cpp0x/decltype64.C: Change argument to const&.
2021-02-19 David Malcolm <dmalcolm@redhat.com>
PR jit/99126
* jit.dg/test-trap.c: New test.
2021-02-19 Jason Merrill <jason@redhat.com>
PR c++/96926
* g++.dg/cpp0x/overload4.C: New test.
2021-02-18 Vladimir N. Makarov <vmakarov@redhat.com>
PR rtl-optimization/96264

View File

@ -1,3 +1,9 @@
2021-02-19 Joseph Myers <joseph@codesourcery.com>
* be.po, ca.po, da.po, de.po, el.po, eo.po, es.po, fi.po, fr.po,
id.po, ja.po, nl.po, pt_BR.po, ru.po, sr.po, sv.po, tr.po, uk.po,
vi.po, zh_CN.po, zh_TW.po: Update.
2021-02-05 Joseph Myers <joseph@codesourcery.com>
* cpplib.pot: Regenerate.

View File

@ -1,3 +1,7 @@
2021-02-19 Ayush Mittal <ayush.m@samsung.com>
* argv.c (expandargv): free allocated buffer if read fails.
2021-02-01 Martin Sebor <msebor@redhat.com>
* dyn-string.c (dyn_string_insert_cstr): Use memcpy instead of strncpy

View File

@ -1,3 +1,8 @@
2021-02-19 Jonathan Wakely <jwakely@redhat.com>
* include/bits/atomic_wait.h (__thread_relax()): Call
__thread_yield() not __gthread_yield().
2021-02-15 Jonathan Wakely <jwakely@redhat.com>
* include/bits/atomic_wait.h (__thread_yield()): Check