public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r11-7686] Daily bump.
@ 2021-03-16 10:56 GCC Administrator
  0 siblings, 0 replies; only message in thread
From: GCC Administrator @ 2021-03-16 10:56 UTC (permalink / raw)
  To: gcc-cvs, libstdc++-cvs

https://gcc.gnu.org/g:3c5b6d24e664f951c6b4e42738aa1ef5489e5f66

commit r11-7686-g3c5b6d24e664f951c6b4e42738aa1ef5489e5f66
Author: GCC Administrator <gccadmin@gcc.gnu.org>
Date:   Tue Mar 16 10:55:35 2021 +0000

    Daily bump.

Diff:
---
 contrib/ChangeLog       |  5 ++++
 gcc/ChangeLog           | 38 ++++++++++++++++++++++++++
 gcc/DATESTAMP           |  2 +-
 gcc/analyzer/ChangeLog  |  4 +++
 gcc/c/ChangeLog         |  6 +++++
 gcc/cp/ChangeLog        | 42 +++++++++++++++++++++++++++++
 gcc/fortran/ChangeLog   | 12 +++++++++
 gcc/po/ChangeLog        |  4 +++
 gcc/testsuite/ChangeLog | 72 +++++++++++++++++++++++++++++++++++++++++++++++++
 libgomp/ChangeLog       |  5 ++++
 libstdc++-v3/ChangeLog  | 26 ++++++++++++++++++
 11 files changed, 215 insertions(+), 1 deletion(-)

diff --git a/contrib/ChangeLog b/contrib/ChangeLog
index 3c525f8c781..acf530efdba 100644
--- a/contrib/ChangeLog
+++ b/contrib/ChangeLog
@@ -1,3 +1,8 @@
+2021-03-16  Martin Liska  <mliska@suse.cz>
+
+	* gcc-changelog/git_update_version.py: Skip one problematic
+	commit.
+
 2021-03-12  Martin Liska  <mliska@suse.cz>
 
 	* gcc-changelog/git_commit.py: Allow deletion of ChangeLog
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index f497c30646e..21307e0b4f6 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,41 @@
+2021-03-16  Jakub Jelinek  <jakub@redhat.com>
+
+	PR target/99563
+	* config/i386/i386.h (struct machine_function): Add
+	has_explicit_vzeroupper bitfield.
+	* config/i386/i386-expand.c (ix86_expand_builtin): Set
+	cfun->machine->has_explicit_vzeroupper when expanding
+	IX86_BUILTIN_VZEROUPPER.
+	* config/i386/i386-features.c (rest_of_handle_insert_vzeroupper):
+	Do the mode switching only when TARGET_VZEROUPPER, expensive
+	optimizations turned on and not optimizing for size.
+	(pass_insert_vzeroupper::gate): Enable even when
+	cfun->machine->has_explicit_vzeroupper is set.
+
+2021-03-16  Jakub Jelinek  <jakub@redhat.com>
+
+	PR target/99542
+	* config/aarch64/aarch64.c
+	(aarch64_simd_clone_compute_vecsize_and_simdlen): If not a function
+	definition, walk TYPE_ARG_TYPES list if non-NULL for argument types
+	instead of DECL_ARGUMENTS.  Ignore types for uniform arguments.
+
+2021-03-15  Richard Biener  <rguenther@suse.de>
+
+	PR tree-optimization/98834
+	* tree-ssa-sccvn.c (vn_reference_lookup_3): Handle missing
+	subsetting by truncating the access size.
+
+2021-03-15  Jan Hubicka  <hubicka@ucw.cz>
+
+	* config/i386/i386-options.c (processor_cost_table): Add znver3_cost.
+	* config/i386/x86-tune-costs.h (znver3_cost): New gobal variable; copy
+	of znver2_cost.
+
+2021-03-15  Martin Liska  <mliska@suse.cz>
+
+	* spellcheck.c: Add missing comma in initialization.
+
 2021-03-14  Uroš Bizjak  <ubizjak@gmail.com>
 
 	* config/i386/sse.md (*vec_extract<mode>): Merge alternative 0 with
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index 192a55253db..25e272c6716 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20210315
+20210316
diff --git a/gcc/analyzer/ChangeLog b/gcc/analyzer/ChangeLog
index 94e87f6bcde..58b0fbbf8db 100644
--- a/gcc/analyzer/ChangeLog
+++ b/gcc/analyzer/ChangeLog
@@ -1,3 +1,7 @@
+2021-03-15  Martin Liska  <mliska@suse.cz>
+
+	* sm-file.cc (get_file_using_fns): Add missing comma in initializer.
+
 2021-03-11  David Malcolm  <dmalcolm@redhat.com>
 
 	PR analyzer/96374
diff --git a/gcc/c/ChangeLog b/gcc/c/ChangeLog
index 214e57b9e23..e1da0679b53 100644
--- a/gcc/c/ChangeLog
+++ b/gcc/c/ChangeLog
@@ -1,3 +1,9 @@
+2021-03-15  Tobias Burnus  <tobias@codesourcery.com>
+
+	PR c++/99509
+	* c-decl.c (finish_decl): For 'omp declare target implicit' vars,
+	ensure that the varpool node is marked as offloadable.
+
 2021-03-05  Tobias Burnus  <tobias@codesourcery.com>
 
 	PR c/99137
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index 370e725605e..5dcdebdf105 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,45 @@
+2021-03-15  Iain Sandoe  <iain@sandoe.co.uk>
+
+	PR c++/99047
+	* coroutines.cc (expand_one_await_expression): If the
+	await_ready() expression is not a boolean then convert it
+	as required.
+
+2021-03-15  Iain Sandoe  <iain@sandoe.co.uk>
+
+	PR c++/98704
+	* coroutines.cc (build_actor_fn): Make destroy index 1
+	correspond to the abnormal unhandled_exception() exit.
+	Substitute the proxy for the resume index.
+	(coro_rewrite_function_body): Arrange to reset the resume
+	index and make done = true for a rethrown exception from
+	unhandled_exception ().
+	(morph_fn_to_coro): Adjust calls to build_actor_fn and
+	coro_rewrite_function_body.
+
+2021-03-15  Iain Sandoe  <iain@sandoe.co.uk>
+
+	PR c++/98480
+	* coroutines.cc (replace_continue): Rewrite continue into
+	'goto label'.
+	(await_statement_walker): Handle await expressions in the
+	initializer, condition and iteration expressions of for
+	loops.
+
+2021-03-15  Iain Sandoe  <iain@sandoe.co.uk>
+
+	PR c++/96749
+	* coroutines.cc (flatten_await_stmt): Allow for the case
+	where a target expression variable only has uses in the
+	second part of a compound expression.
+	(maybe_promote_temps): Avoid emiting empty statements.
+
+2021-03-15  Tobias Burnus  <tobias@codesourcery.com>
+
+	PR c++/99509
+	* decl.c (cp_finish_decl): For 'omp declare target implicit' vars,
+	ensure that the varpool node is marked as offloadable.
+
 2021-03-12  Nathan Sidwell  <nathan@acm.org>
 
 	PR c++/99238
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog
index ec744b70cc3..8cc9403076c 100644
--- a/gcc/fortran/ChangeLog
+++ b/gcc/fortran/ChangeLog
@@ -1,3 +1,15 @@
+2021-03-15  Thomas Koenig  <tkoenig@gcc.gnu.org>
+
+	PR fortran/99345
+	* frontend-passes.c (doloop_contained_procedure_code):
+	Properly handle EXEC_IOLENGTH.
+
+2021-03-15  Paul Thomas  <pault@gcc.gnu.org>
+
+	PR fortran/99545
+	* trans-stmt.c (gfc_trans_allocate): Mark the initialization
+	assignment by setting init_flag.
+
 2021-03-14  Harald Anlauf  <anlauf@gmx.de>
 	    Paul Thomas  <pault@gcc.gnu.org>
 
diff --git a/gcc/po/ChangeLog b/gcc/po/ChangeLog
index 2fce3ac9903..6430bcfb07c 100644
--- a/gcc/po/ChangeLog
+++ b/gcc/po/ChangeLog
@@ -1,3 +1,7 @@
+2021-03-15  Joseph Myers  <joseph@codesourcery.com>
+
+	* sv.po: Update.
+
 2021-03-08  Joseph Myers  <joseph@codesourcery.com>
 
 	* de.po, sv.po: Update.
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 2c7b81b3ebe..5ce7c1c9628 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,75 @@
+2021-03-16  Jakub Jelinek  <jakub@redhat.com>
+
+	PR target/99563
+	* gcc.target/i386/avx-pr99563.c: New test.
+
+2021-03-16  Jakub Jelinek  <jakub@redhat.com>
+
+	PR target/99542
+	* gcc.dg/gomp/pr99542.c: New test.
+	* gcc.dg/gomp/pr59669-2.c (bar): Don't expect a warning on aarch64.
+	* gcc.dg/gomp/simd-clones-2.c (setArray): Likewise.
+	* g++.dg/vect/simd-clone-7.cc (bar): Likewise.
+	* g++.dg/gomp/declare-simd-1.C (f37): Expect a different warning
+	on aarch64.
+	* gcc.dg/declare-simd.c (fn2): Expect a new warning on aarch64.
+
+2021-03-15  Jakub Jelinek  <jakub@redhat.com>
+
+	PR c++/99601
+	* g++.dg/modules/builtin-3_a.C: Fix target selector syntax errors.
+	* g++.dg/modules/builtin-3_b.C: Likewise.
+
+2021-03-15  Nathan Sidwell  <nathan@acm.org>
+
+	PR c++/99601
+	* g++.dg/modules/builtin-3_a.C: Fix lp64 x86 detection.
+	* g++.dg/modules/builtin-3_b.C: Fix lp64 x86 detection.
+
+2021-03-15  Iain Sandoe  <iain@sandoe.co.uk>
+
+	PR c++/99047
+	* g++.dg/coroutines/pr99047.C: New test.
+
+2021-03-15  Iain Sandoe  <iain@sandoe.co.uk>
+
+	PR c++/98704
+	* g++.dg/coroutines/torture/pr98704.C: New test.
+
+2021-03-15  Iain Sandoe  <iain@sandoe.co.uk>
+
+	PR c++/98480
+	* g++.dg/coroutines/pr98480.C: New test.
+	* g++.dg/coroutines/torture/co-await-24-for-init.C: New test.
+	* g++.dg/coroutines/torture/co-await-25-for-condition.C: New test.
+	* g++.dg/coroutines/torture/co-await-26-for-iteration-expr.C: New test.
+
+2021-03-15  Iain Sandoe  <iain@sandoe.co.uk>
+
+	PR c++/96749
+	* g++.dg/coroutines/pr96749-1.C: New test.
+	* g++.dg/coroutines/pr96749-2.C: New test.
+
+2021-03-15  Richard Biener  <rguenther@suse.de>
+
+	PR tree-optimization/98834
+	* g++.dg/opt/pr98834.C: New testcase.
+
+2021-03-15  Thomas Koenig  <tkoenig@gcc.gnu.org>
+
+	PR fortran/99345
+	* gfortran.dg/do_check_16.f90: New test.
+	* gfortran.dg/do_check_17.f90: New test.
+
+2021-03-15  Paul Thomas  <pault@gcc.gnu.org>
+
+	PR fortran/99545
+	* gfortran.dg/pr99545.f90: New test.
+
+2021-03-15  David Edelsohn  <dje.gcc@gmail.com>
+
+	* gcc.target/powerpc/pr99492.c: Fix typo.
+
 2021-03-14  Harald Anlauf  <anlauf@gmx.de>
 	    Paul Thomas  <pault@gcc.gnu.org>
 
diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog
index 3aee0365646..c7502ca3bd2 100644
--- a/libgomp/ChangeLog
+++ b/libgomp/ChangeLog
@@ -1,3 +1,8 @@
+2021-03-15  Tobias Burnus  <tobias@codesourcery.com>
+
+	PR c++/99509
+	* testsuite/libgomp.c-c++-common/declare_target-1.c: New test.
+
 2021-03-12  Tobias Burnus  <tobias@codesourcery.com>
 
 	PR fortran/98858
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 296dc680675..ce85c22e151 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,29 @@
+2021-03-15  Iain Sandoe  <iain@sandoe.co.uk>
+
+	* testsuite/17_intro/names.cc: Exclude j from the list
+	of test symbols for Darwin.
+
+2021-03-15  Iain Sandoe  <iain@sandoe.co.uk>
+
+	* config/os/bsd/darwin/ppc-extra.ver: Add matching for
+	to_chars and from_chars for long double.
+
+2021-03-15  Patrick Palka  <ppalka@redhat.com>
+
+	* include/bits/max_size_type.h (__max_size_type::operator _Tp):
+	Fix formatting.
+	(__max_size_type::operator++): Define.
+	(__max_size_type::operator--): Likewise.
+	(__max_size_type::operator<=>): Conditionally define (in place
+	of the other comparison operators).
+	(__max_diff_type::operator _Tp): Fix formatting.
+	(__max_diff_type::operator++): Define.
+	(__max_diff_type::operator--): Likewise.
+	(__max_diff_type::operator<=>): Conditionally define (in place
+	of the other comparison operators).
+	* testsuite/std/ranges/iota/max_size_type.cc (test01): Test
+	these operator overloads.
+
 2021-03-15  Caroline Tice  <cmtice@google.com>
 
 	PR libstdc++/99172


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2021-03-16 10:56 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-16 10:56 [gcc r11-7686] Daily bump GCC Administrator

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).