public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
From: GCC Administrator <gccadmin@gcc.gnu.org>
To: gcc-cvs@gcc.gnu.org
Subject: [gcc r12-7418] Daily bump.
Date: Tue,  1 Mar 2022 00:17:11 +0000 (GMT)	[thread overview]
Message-ID: <20220301001711.F1DEA3858D20@sourceware.org> (raw)

https://gcc.gnu.org/g:a35f16971b4ba047779ec8a3723dd1bfd9ecdf3d

commit r12-7418-ga35f16971b4ba047779ec8a3723dd1bfd9ecdf3d
Author: GCC Administrator <gccadmin@gcc.gnu.org>
Date:   Tue Mar 1 00:16:28 2022 +0000

    Daily bump.

Diff:
---
 gcc/ChangeLog           | 82 +++++++++++++++++++++++++++++++++++++++++++++
 gcc/DATESTAMP           |  2 +-
 gcc/cp/ChangeLog        | 13 ++++++++
 gcc/d/ChangeLog         |  6 ++++
 gcc/testsuite/ChangeLog | 88 +++++++++++++++++++++++++++++++++++++++++++++++++
 libgomp/ChangeLog       |  9 +++++
 libphobos/ChangeLog     |  5 +++
 7 files changed, 204 insertions(+), 1 deletion(-)

diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index f3c47037035..28286e0da0a 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,85 @@
+2022-02-28  Roger Sayle  <roger@nextmovesoftware.com>
+
+	PR tree-optimization/91384
+	* config/i386/i386.md (peephole2): Eliminate final testl insn
+	from the sequence *movsi_internal, *negsi_1, *cmpsi_ccno_1 by
+	transforming using *negsi_2 for the negation.
+
+2022-02-28  Roger Sayle  <roger@nextmovesoftware.com>
+	    Eric Botcazou  <ebotcazou@adacore.com>
+
+	PR middle-end/80270
+	* expmed.cc (extract_integral_bit_field): If OP0 is a hard
+	register, copy it to a pseudo before calling simplify_gen_subreg.
+
+2022-02-28  Vladimir N. Makarov  <vmakarov@redhat.com>
+
+	PR rtl-optimization/104637
+	* lra-assigns.cc (lra_split_hard_reg_for): Split hard regs as many
+	as possible on one subpass.
+
+2022-02-28  Qing Zhao  <qing.zhao@oracle.com>
+
+	PR middle-end/104550
+	* gimple-fold.cc (clear_padding_flush): Suppress warnings for new
+	created uses.
+
+2022-02-28  Martin Liska  <mliska@suse.cz>
+
+	PR ipa/104648
+	* main.cc (main): Use flag_checking instead of CHECKING_P
+	and run toplev::finalize only if there is not error seen.
+
+2022-02-28  Richard Biener  <rguenther@suse.de>
+
+	* tree-ssa-pre.cc (compute_avail): Revert part of last change.
+
+2022-02-28  Richard Biener  <rguenther@suse.de>
+
+	PR tree-optimization/104700
+	* tree-ssa-pre.cc (get_or_alloc_expr_for): Remove and inline
+	into ...
+	(find_or_generate_expression): ... here, simplifying code.
+
+2022-02-28  Tom de Vries  <tdevries@suse.de>
+
+	* config/nvptx/nvptx-opts.h (enum ptx_version): Add
+	PTX_VERSION_default.
+	* config/nvptx/nvptx.cc (handle_ptx_version_option): Handle
+	PTX_VERSION_default.
+	* config/nvptx/nvptx.opt: Add EnumValue "_" / PTX_VERSION_default.
+
+2022-02-28  Richard Biener  <rguenther@suse.de>
+
+	PR rtl-optimization/104686
+	* ira-int.h (minmax_set_iter_cond): Use ctz_hwi to elide loop
+	skipping bits that are zero.
+	(ira_object_conflict_iter_cond): Likewise.
+
+2022-02-28  Hongyu Wang  <hongyu.wang@intel.com>
+
+	* config/i386/avx512fintrin.h (_MM_TERNLOG_ENUM): New enum.
+	(_mm512_ternarylogic_epi64): Truncate imm to unsigned
+	char to avoid error when using ~enum as parameter.
+	(_mm512_mask_ternarylogic_epi64): Likewise.
+	(_mm512_maskz_ternarylogic_epi64): Likewise.
+	(_mm512_ternarylogic_epi32): Likewise.
+	(_mm512_mask_ternarylogic_epi32): Likewise.
+	(_mm512_maskz_ternarylogic_epi32): Likewise.
+	* config/i386/avx512vlintrin.h (_mm256_ternarylogic_epi64):
+	Adjust imm param type to unsigned char.
+	(_mm256_mask_ternarylogic_epi64): Likewise.
+	(_mm256_maskz_ternarylogic_epi64): Likewise.
+	(_mm256_ternarylogic_epi32): Likewise.
+	(_mm256_mask_ternarylogic_epi32): Likewise.
+	(_mm256_maskz_ternarylogic_epi32): Likewise.
+	(_mm_ternarylogic_epi64): Likewise.
+	(_mm_mask_ternarylogic_epi64): Likewise.
+	(_mm_maskz_ternarylogic_epi64): Likewise.
+	(_mm_ternarylogic_epi32): Likewise.
+	(_mm_mask_ternarylogic_epi32): Likewise.
+	(_mm_maskz_ternarylogic_epi32): Likewise.
+
 2022-02-25  Jakub Jelinek  <jakub@redhat.com>
 	    Marc Glisse  <marc.glisse@inria.fr>
 
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index e5b42f549e8..f2385f2bfb9 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20220228
+20220301
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index 5fc181740ad..2c2a4faab7b 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,16 @@
+2022-02-28  Marek Polacek  <polacek@redhat.com>
+
+	PR c++/104682
+	* cp-tree.h (build_enumerator): Adjust.
+	* decl.cc (finish_enum): Make it return the new decl.
+	* pt.cc (tsubst_enum): Propagate TREE_DEPRECATED and TREE_UNAVAILABLE.
+
+2022-02-28  Marek Polacek  <polacek@redhat.com>
+
+	PR c++/104667
+	* decl2.cc (is_late_template_attribute): Cope with a decl without
+	a type.
+
 2022-02-27  Jason Merrill  <jason@redhat.com>
 
 	PR c++/104618
diff --git a/gcc/d/ChangeLog b/gcc/d/ChangeLog
index 812a23be7af..2b1ebedff35 100644
--- a/gcc/d/ChangeLog
+++ b/gcc/d/ChangeLog
@@ -1,3 +1,9 @@
+2022-02-28  Iain Buclaw  <ibuclaw@gdcproject.org>
+
+	* d-target.cc (Target::_init): Initialize C type size fields.
+	* dmd/MERGE: Merge upstream dmd cf63dd8e5.
+	* dmd/VERSION: Update version to v2.099.0-rc.1.
+
 2022-02-20  Iain Buclaw  <ibuclaw@gdcproject.org>
 
 	* expr.cc (ExprVisitor::visit (DeleteExp *)): Remove handling of
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index fc17fe49048..f90133cb6bb 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,91 @@
+2022-02-28  Roger Sayle  <roger@nextmovesoftware.com>
+
+	PR tree-optimization/91384
+	* gcc.target/i386/pr91384.c: New test case.
+
+2022-02-28  Roger Sayle  <roger@nextmovesoftware.com>
+	    Eric Botcazou  <ebotcazou@adacore.com>
+
+	* gcc.target/i386/pr80270.c: New test case.
+
+2022-02-28  Vladimir N. Makarov  <vmakarov@redhat.com>
+
+	PR rtl-optimization/104637
+	* gcc.target/i386/pr104637.c: New.
+
+2022-02-28  Iain Buclaw  <ibuclaw@gdcproject.org>
+
+	* gdc.dg/torture/simd7413a.d: Update.
+	* gdc.dg/ubsan/pr88957.d: Update.
+	* gdc.dg/simd18489.d: New test.
+	* gdc.dg/torture/simd21727.d: New test.
+
+2022-02-28  Marek Polacek  <polacek@redhat.com>
+
+	PR c++/104682
+	* g++.dg/ext/attr-unavailable-10.C: New test.
+	* g++.dg/ext/attr-unavailable-11.C: New test.
+	* g++.dg/warn/deprecated-17.C: New test.
+	* g++.dg/warn/deprecated-18.C: New test.
+
+2022-02-28  Marek Polacek  <polacek@redhat.com>
+
+	PR c++/104667
+	* g++.dg/ext/attrib64.C: New test.
+
+2022-02-28  Qing Zhao  <qing.zhao@oracle.com>
+
+	PR middle-end/104550
+	* gcc.dg/auto-init-pr104550-1.c: New test.
+	* gcc.dg/auto-init-pr104550-2.c: New test.
+	* gcc.dg/auto-init-pr104550-3.c: New test.
+
+2022-02-28  Martin Liska  <mliska@suse.cz>
+
+	PR ipa/104648
+	* g++.dg/pr104648.C: New test.
+
+2022-02-28  Richard Biener  <rguenther@suse.de>
+
+	PR tree-optimization/104700
+	* gcc.dg/pr104700-2.c: New testcase.
+	* gcc.dg/torture/pr104700-1.c: Likewise.
+
+2022-02-28  Tom de Vries  <tdevries@suse.de>
+
+	* gcc.target/nvptx/atomic-store-1.c: Add -mptx=_.
+	* gcc.target/nvptx/atomic-store-2.c: Same.
+	* gcc.target/nvptx/float16-1.c: Same.
+	* gcc.target/nvptx/float16-2.c: Same.
+	* gcc.target/nvptx/float16-3.c: Same.
+	* gcc.target/nvptx/float16-4.c: Same.
+	* gcc.target/nvptx/float16-5.c: Same.
+	* gcc.target/nvptx/float16-6.c: Same.
+	* gcc.target/nvptx/tanh-1.c: Same.
+	* gcc.target/nvptx/uniform-simt-1.c: Same.
+	* gcc.target/nvptx/uniform-simt-3.c: Same.
+
+2022-02-28  Tom de Vries  <tdevries@suse.de>
+
+	* gcc.target/nvptx/atomic-store-3.c: Add -misa=sm_30.
+
+2022-02-28  Tom de Vries  <tdevries@suse.de>
+
+	* gcc.target/nvptx/uniform-simt-2.c: Add -misa=sm_30.
+
+2022-02-28  Tom de Vries  <tdevries@suse.de>
+
+	* gcc.target/nvptx/rotate.c: Add -misa=sm_35.
+
+2022-02-28  Hongyu Wang  <hongyu.wang@intel.com>
+
+	* gcc.target/i386/avx512f-vpternlogd-1.c: Use new enum.
+	* gcc.target/i386/avx512f-vpternlogq-1.c: Likewise.
+	* gcc.target/i386/avx512vl-vpternlogd-1.c: Likewise.
+	* gcc.target/i386/avx512vl-vpternlogq-1.c: Likewise.
+	* gcc.target/i386/testimm-10.c: Remove imm check for vpternlog
+	insns since the imm has been truncated in intrinsic.
+
 2022-02-27  Jason Merrill  <jason@redhat.com>
 
 	PR c++/104618
diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog
index cc9eaabe507..95d8d5f7f5d 100644
--- a/libgomp/ChangeLog
+++ b/libgomp/ChangeLog
@@ -1,3 +1,12 @@
+2022-02-28  Tom de Vries  <tdevries@suse.de>
+
+	* testsuite/libgomp.c/declare-variant-3-sm30.c: Add -foffload=-mptx=_.
+	* testsuite/libgomp.c/declare-variant-3-sm35.c: Same.
+	* testsuite/libgomp.c/declare-variant-3-sm53.c: Same.
+	* testsuite/libgomp.c/declare-variant-3-sm70.c: Same.
+	* testsuite/libgomp.c/declare-variant-3-sm75.c: Same.
+	* testsuite/libgomp.c/declare-variant-3-sm80.c: Same.
+
 2022-02-24  Tom de Vries  <tdevries@suse.de>
 
 	* testsuite/libgomp.c/declare-variant-3-sm30.c: New test.
diff --git a/libphobos/ChangeLog b/libphobos/ChangeLog
index 22ec7794a6f..d3e468816f2 100644
--- a/libphobos/ChangeLog
+++ b/libphobos/ChangeLog
@@ -1,3 +1,8 @@
+2022-02-28  Iain Buclaw  <ibuclaw@gdcproject.org>
+
+	* libdruntime/MERGE: Merge upstream druntime caf14b0f.
+	* src/MERGE: Merge upstream phobos 41aaf8c26.
+
 2022-02-20  Iain Buclaw  <ibuclaw@gdcproject.org>
 
 	* libdruntime/MERGE: Merge upstream druntime 55528bd1.


                 reply	other threads:[~2022-03-01  0:17 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20220301001711.F1DEA3858D20@sourceware.org \
    --to=gccadmin@gcc.gnu.org \
    --cc=gcc-cvs@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).