aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorGCC Administrator <gccadmin@gcc.gnu.org>2022-08-14 00:16:56 +0000
committerGCC Administrator <gccadmin@gcc.gnu.org>2022-08-14 00:16:56 +0000
commitfe4dc4f553d8639b0ce3465e5e6dcf61c1ae9752 (patch)
tree87d0eb52ae153338459f63bbb5fa343d52357b76 /gcc
parent4991e20923b658ce9fbdf5621cab39f71b98fbc2 (diff)
downloadgcc-fe4dc4f553d8639b0ce3465e5e6dcf61c1ae9752.zip
gcc-fe4dc4f553d8639b0ce3465e5e6dcf61c1ae9752.tar.gz
gcc-fe4dc4f553d8639b0ce3465e5e6dcf61c1ae9752.tar.bz2
Daily bump.
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog25
-rw-r--r--gcc/DATESTAMP2
-rw-r--r--gcc/testsuite/ChangeLog5
3 files changed, 31 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index dad7ce9..19ba48e 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,28 @@
+2022-08-13 Roger Sayle <roger@nextmovesoftware.com>
+ Uroš Bizjak <ubizjak@gmail.com>
+
+ * config/i386/predicates.md (const_0_to_255_not_mul_8_operand):
+ New predicate for values between 0/1 and 255, not multiples of 8.
+ * config/i386/sse.md (ashlv1ti3): Delay lowering of logical left
+ shifts by constant bit counts.
+ (*ashlvti3_internal): New define_insn_and_split that lowers
+ logical left shifts by constant bit counts, that aren't multiples
+ of 8, before reload.
+ (lshrv1ti3): Delay lowering of logical right shifts by constant.
+ (*lshrv1ti3_internal): New define_insn_and_split that lowers
+ logical right shifts by constant bit counts, that aren't multiples
+ of 8, before reload.
+ (ashrv1ti3):: Delay lowering of arithmetic right shifts by
+ constant bit counts.
+ (*ashrv1ti3_internal): New define_insn_and_split that lowers
+ arithmetic right shifts by constant bit counts before reload.
+ (rotlv1ti3): Delay lowering of rotate left by constant.
+ (*rotlv1ti3_internal): New define_insn_and_split that lowers
+ rotate left by constant bits counts before reload.
+ (rotrv1ti3): Delay lowering of rotate right by constant.
+ (*rotrv1ti3_internal): New define_insn_and_split that lowers
+ rotate right by constant bits counts before reload.
+
2022-08-12 Srinath Parvathaneni <srinath.parvathaneni@arm.com>
* doc/invoke.texi (Arm Options): Document -mcpu=cortex-m55 options.
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index 763830c..f7f051d 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20220813
+20220814
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index b61e5a2..ec02d51 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,8 @@
+2022-08-13 Tim Lange <mail@tim-lange.me>
+
+ * gcc.dg/analyzer/torture/pr93451.c:
+ Disable Wanalyzer-out-of-bounds.
+
2022-08-12 Jan Hubicka <hubicka@ucw.cz>
PR middle-end/106057