public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r12-7088] Daily bump.
@ 2022-02-08  0:17 GCC Administrator
  0 siblings, 0 replies; only message in thread
From: GCC Administrator @ 2022-02-08  0:17 UTC (permalink / raw)
  To: gcc-cvs

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

commit r12-7088-gcc2430c122a49130b2b0a8a67455db30bbb8fd00
Author: GCC Administrator <gccadmin@gcc.gnu.org>
Date:   Tue Feb 8 00:16:24 2022 +0000

    Daily bump.

Diff:
---
 gcc/ChangeLog           | 46 ++++++++++++++++++++++++++++++
 gcc/DATESTAMP           |  2 +-
 gcc/analyzer/ChangeLog  | 14 +++++++++
 gcc/testsuite/ChangeLog | 75 +++++++++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 136 insertions(+), 1 deletion(-)

diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 7c51431697f..16967153a2c 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,49 @@
+2022-02-07  Tamar Christina  <tamar.christina@arm.com>
+
+	* config/arm/arm_neon.h (vusdotq_s32, vusdot_laneq_s32,
+	vusdotq_laneq_s32, vsudot_laneq_s32, vsudotq_laneq_s32): New
+	* config/arm/arm_neon_builtins.def (usdot): Add V16QI.
+	(usdot_laneq, sudot_laneq): New.
+	* config/arm/neon.md (neon_<sup>dot_laneq<vsi2qi>): New.
+	(neon_<sup>dot_lane<vsi2qi>): Remote unneeded code.
+
+2022-02-07  Tamar Christina  <tamar.christina@arm.com>
+
+	* config/arm/arm_neon.h (vdot_laneq_u32, vdotq_laneq_u32,
+	vdot_laneq_s32, vdotq_laneq_s32): New.
+	* config/arm/arm_neon_builtins.def (sdot_laneq, udot_laneq): New.
+	* config/arm/neon.md (neon_<sup>dot<vsi2qi>): New.
+	(<sup>dot_prod<vsi2qi>): Re-order rtl.
+	(neon_<sup>dot_lane<vsi2qi>): Fix rtl order and endiannes.
+	(neon_<sup>dot_laneq<vsi2qi>): New.
+
+2022-02-07  Andreas Krebbel  <krebbel@linux.ibm.com>
+
+	PR target/104327
+	* config/s390/s390.cc (s390_can_inline_p): Accept a few more flags
+	if always_inline is set. Don't inline when tune differs without
+	always_inline.
+
+2022-02-07  Richard Biener  <rguenther@suse.de>
+
+	PR middle-end/104402
+	* gimple-expr.cc (is_gimple_condexpr): _Complex typed
+	compares are not valid.
+	* tree-cfg.cc (verify_gimple_assign_ternary): For COND_EXPR
+	check is_gimple_condexpr.
+
+2022-02-07  Kewen Lin  <linkw@linux.ibm.com>
+
+	PR target/103627
+	* config/rs6000/rs6000.cc (rs6000_option_override_internal): Move the
+	hunk affecting VSX and ALTIVEC to appropriate place.
+
+2022-02-07  Kewen Lin  <linkw@linux.ibm.com>
+
+	PR target/103627
+	* config/rs6000/rs6000.cc (rs6000_option_override_internal): Disable
+	MMA if !TARGET_VSX.
+
 2022-02-06  Jakub Jelinek  <jakub@redhat.com>
 
 	PR c++/89074
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index e4ddc2e8f5d..1827d2b902a 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20220207
+20220208
diff --git a/gcc/analyzer/ChangeLog b/gcc/analyzer/ChangeLog
index b008c66f34b..0d452a83e8f 100644
--- a/gcc/analyzer/ChangeLog
+++ b/gcc/analyzer/ChangeLog
@@ -1,3 +1,17 @@
+2022-02-07  David Malcolm  <dmalcolm@redhat.com>
+
+	PR analyzer/104417
+	* sm-taint.cc (tainted_allocation_size::tainted_allocation_size):
+	Remove overzealous assertion.
+	(tainted_allocation_size::emit): Likewise.
+	(region_model::check_dynamic_size_for_taint): Likewise.
+
+2022-02-07  David Malcolm  <dmalcolm@redhat.com>
+
+	PR analyzer/103872
+	* region-model-impl-calls.cc (region_model::impl_call_memcpy):
+	Reimplement in terms of a get_store_value followed by a set_value.
+
 2022-02-03  David Malcolm  <dmalcolm@redhat.com>
 
 	PR analyzer/104369
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index e7b21f51fb6..c5a6e9020c1 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,78 @@
+2022-02-07  David Malcolm  <dmalcolm@redhat.com>
+
+	PR analyzer/104417
+	* gcc.dg/analyzer/pr104417.c: New test.
+
+2022-02-07  David Malcolm  <dmalcolm@redhat.com>
+
+	PR analyzer/103872
+	* gcc.dg/analyzer/memcpy-1.c: Add alternate versions of test cases
+	in which the calls to memcpy are hidden from the optimizer.  Add
+	further test cases.
+	* gcc.dg/analyzer/taint-size-1.c: Add test coverage for memcpy
+	with tainted size.
+
+2022-02-07  David Malcolm  <dmalcolm@redhat.com>
+
+	* gcc.dg/analyzer/asm-x86-1.c: Use dg-do "compile" rather than
+	"assemble".
+	* gcc.dg/analyzer/asm-x86-lp64-1.c: Likewise.
+	* gcc.dg/analyzer/asm-x86-lp64-2.c: Likewise.
+	* gcc.dg/analyzer/torture/asm-x86-linux-array_index_mask_nospec.c:
+	Likewise.
+	* gcc.dg/analyzer/torture/asm-x86-linux-cpuid-paravirt-1.c:
+	Likewise, and restrict to x86_64-pc-linux-gnu.
+	* gcc.dg/analyzer/torture/asm-x86-linux-cpuid-paravirt-2.c: Likewise.
+	* gcc.dg/analyzer/torture/asm-x86-linux-cpuid.c: Use dg-do
+	"compile" rather than "assemble".
+	* gcc.dg/analyzer/torture/asm-x86-linux-rdmsr-paravirt.c:
+	Likewise, and restrict to x86_64-pc-linux-gnu.
+	* gcc.dg/analyzer/torture/asm-x86-linux-rdmsr.c: Use dg-do
+	"compile" rather than "assemble".
+	* gcc.dg/analyzer/torture/asm-x86-linux-wfx_get_ps_timeout-full.c:
+	Likewise.
+	* gcc.dg/analyzer/torture/asm-x86-linux-wfx_get_ps_timeout-reduced.c:
+	Likewise.
+
+2022-02-07  Jakub Jelinek  <jakub@redhat.com>
+
+	PR target/104380
+	* gcc.c-torture/execute/builtins/lib/chk.c (__sprintf_chkieee128,
+	__vsprintf_chkieee128, __snprintf_chkieee128,
+	__vsnprintf_chkieee128): New aliases to non-ieee128 suffixed functions
+	for powerpc -mabi=ieeelongdouble.
+
+2022-02-07  Tamar Christina  <tamar.christina@arm.com>
+
+	* gcc.target/arm/simd/vdot-2-1.c: Add new tests.
+	* gcc.target/arm/simd/vdot-2-2.c: Likewise and fix output.
+
+2022-02-07  Tamar Christina  <tamar.christina@arm.com>
+
+	* gcc.target/arm/simd/vdot-compile.c: Add new cases.
+	* gcc.target/arm/simd/vdot-exec.c: Likewise.
+
+2022-02-07  Andreas Krebbel  <krebbel@linux.ibm.com>
+
+	PR target/104327
+	* gcc.c-torture/compile/pr104327.c: New test.
+
+2022-02-07  Richard Biener  <rguenther@suse.de>
+
+	PR middle-end/104402
+	* gcc.dg/torture/pr104402.c: New testcase.
+
+2022-02-07  Kewen Lin  <linkw@linux.ibm.com>
+
+	PR target/103627
+	* gcc.target/powerpc/pr103627-3.c: New test.
+
+2022-02-07  Kewen Lin  <linkw@linux.ibm.com>
+
+	PR target/103627
+	* gcc.target/powerpc/pr103627-1.c: New test.
+	* gcc.target/powerpc/pr103627-2.c: New test.
+
 2022-02-06  Patrick Palka  <ppalka@redhat.com>
 
 	PR c++/96242


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

only message in thread, other threads:[~2022-02-08  0:17 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-08  0:17 [gcc r12-7088] 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).