diff options
Diffstat (limited to 'gcc')
| -rw-r--r-- | gcc/ChangeLog | 44 | ||||
| -rw-r--r-- | gcc/DATESTAMP | 2 | ||||
| -rw-r--r-- | gcc/c/ChangeLog | 14 | ||||
| -rw-r--r-- | gcc/cp/ChangeLog | 6 | ||||
| -rw-r--r-- | gcc/testsuite/ChangeLog | 13 | 
5 files changed, 78 insertions, 1 deletions
| diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d78b97c..1c7dc42 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,47 @@ +2021-06-06  Eric Botcazou  <ebotcazou@adacore.com> + +	* config/sparc/sparc-protos.h (order_regs_for_local_alloc): Rename +	to... +	(sparc_order_regs_for_local_alloc): ...this. +	(sparc_leaf_reg_remap): Declare. +	* config/sparc/sparc.h (ADJUST_REG_ALLOC_ORDER): Adjust. +	(LEAF_REG_REMAP): Reimplement as call to sparc_leaf_reg_remap. +	* config/sparc/sparc.c (leaf_reg_remap): Delete. +	(order_regs_for_local_alloc): Rename to... +	(sparc_order_regs_for_local_alloc): ...this. +	(sparc_leaf_reg_remap): New function. +	(sparc_conditional_register_usage): Do not modify leaf_reg_remap. + +2021-06-06  David Edelsohn  <dje.gcc@gmail.com> + +	* config/rs6000/rs6000.c (rs6000_xcoff_asm_output_aligned_decl_common): +	Use assemble_name to output BSS section name. + +2021-06-06  Uroš Bizjak  <ubizjak@gmail.com> + +	* config/i386/constraints.md (Bs): +	Remove boolean operators from match_test RTX. +	(Bw): Ditto. +	(L): Ditto. +	(M): Use "mode" variable instead of GET_MODE (op) in match_test RTX. +	(Wz): Ditto. + +2021-06-06  Martin Liska  <mliska@suse.cz> + +	* doc/extend.texi: Add missing @headitem. +	* doc/invoke.texi: Likewise. +	* doc/objc.texi: Likewise. + +2021-06-06  Martin Liska  <mliska@suse.cz> + +	* genhooks.c (emit_findices): Remove unused function. +	(emit_documentation): Do not call emit_findices +	and do not search for @Fcode directives. + +2021-06-06  Martin Liska  <mliska@suse.cz> + +	* doc/invoke.texi: Remove extra character. +  2021-06-05  Kewen Lin  <linkw@linux.ibm.com>  	* config/sh/sh.md (doloop_end_split): Fix empty split condition. diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index 09dbf4d..0c8a502 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20210606 +20210607 diff --git a/gcc/c/ChangeLog b/gcc/c/ChangeLog index 747f53f..ff665e3 100644 --- a/gcc/c/ChangeLog +++ b/gcc/c/ChangeLog @@ -1,3 +1,17 @@ +2021-06-06  Jakub Jelinek  <jakub@redhat.com> + +	PR c/100902 +	* c-parser.c (c_parser_omp_target): Call c_omp_adjust_map_clauses +	even when target is combined with other constructs. + +2021-06-06  Eric Botcazou  <ebotcazou@adacore.com> + +	PR c/100920 +	* c-decl.c (finish_struct): Fix thinko in previous change. +	* c-typeck.c (convert_for_assignment): Do not warn on pointer +	assignment and initialization for storage order purposes if the +	RHS is a call to a DECL_IS_MALLOC function. +  2021-06-04  Martin Sebor  <msebor@redhat.com>  	PR c/100783 diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index f1537e5..7542375 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,9 @@ +2021-06-06  Jakub Jelinek  <jakub@redhat.com> + +	PR c/100902 +	* parser.c (cp_parser_omp_target): Call c_omp_adjust_map_clauses +	even when target is combined with other constructs. +  2021-06-04  Patrick Palka  <ppalka@redhat.com>  	PR c++/100893 diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 5e19bb9..d4f10b1 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,16 @@ +2021-06-06  Jakub Jelinek  <jakub@redhat.com> + +	* gcc.dg/gomp/scan-1.c: New test. + +2021-06-06  Jakub Jelinek  <jakub@redhat.com> + +	PR c/100902 +	* c-c++-common/gomp/pr100902-1.c: New test. + +2021-06-06  Eric Botcazou  <ebotcazou@adacore.com> + +	* gcc.dg/sso-14.c: New test. +  2021-06-05  José Rui Faustino de Sousa  <jrfsousa@gmail.com>  	PR fortran/100120 | 
