Daily bump.

This commit is contained in:
GCC Administrator
2023-03-28 00:17:14 +00:00
parent cffa72fde8
commit ffcdac4feb
4 changed files with 87 additions and 1 deletions

View File

@@ -1,3 +1,59 @@
2023-03-27 Jonathan Wakely <jwakely@redhat.com>
PR gcov-profile/109297
* gcov-tool.cc (merge_usage): Fix "subcomand" typo.
(merge_stream_usage): Likewise.
(overlap_usage): Likewise.
2023-03-27 Christoph Müllner <christoph.muellner@vrull.eu>
PR target/109296
* config/riscv/thead.md: Add missing mode specifiers.
2023-03-27 Philipp Tomsich <philipp.tomsich@vrull.eu>
Jiangning Liu <jiangning.liu@amperecomputing.com>
Manolis Tsamis <manolis.tsamis@vrull.eu>
* config/aarch64/aarch64.cc: Update vector costs for ampere1.
2023-03-27 Richard Biener <rguenther@suse.de>
PR rtl-optimization/109237
* cfgcleanup.cc (bb_is_just_return): Walk insns backwards.
2023-03-27 Richard Biener <rguenther@suse.de>
PR lto/109263
* lto-wrapper.cc (run_gcc): Parse alternate debug options
as well, they always enable debug.
2023-03-27 Kewen Lin <linkw@linux.ibm.com>
PR target/109167
* config/rs6000/emmintrin.h (_mm_bslli_si128): Move the implementation
from ...
(_mm_slli_si128): ... here. Change to call _mm_bslli_si128 directly.
2023-03-27 Kewen Lin <linkw@linux.ibm.com>
PR target/109082
* config/rs6000/emmintrin.h (_mm_bslli_si128): Check __N is not less
than zero when calling vec_sld.
(_mm_bsrli_si128): Return __A if __N is zero, check __N is bigger than
zero when calling vec_sld.
(_mm_slli_si128): Return __A if _imm5 is zero, check _imm5 is bigger
than zero when calling vec_sld.
2023-03-27 Sandra Loosemore <sandra@codesourcery.com>
* doc/generic.texi (OpenMP): Document OMP_SIMD, OMP_DISTRIBUTE,
OMP_TASKLOOP, and OMP_LOOP with OMP_FOR. Document how collapsed
loops are represented and which fields are vectors. Add
documentation for OMP_FOR_PRE_BODY field. Document internal
form of non-rectangular loops and OMP_FOR_NON_RECTANGULAR.
* tree.def (OMP_FOR): Make documentation consistent with the
Texinfo manual, to fill some gaps and correct errors.
2023-03-26 Andreas Schwab <schwab@linux-m68k.org>
PR target/106282

View File

@@ -1 +1 @@
20230327
20230328

View File

@@ -1,3 +1,28 @@
2023-03-27 Richard Biener <rguenther@suse.de>
PR tree-optimization/54498
* g++.dg/torture/pr54498.C: New testcase.
2023-03-27 Richard Biener <rguenther@suse.de>
PR tree-optimization/108357
* gcc.dg/tree-ssa/pr108357.c: New testcase.
2023-03-27 Martin Liska <mliska@suse.cz>
* lib/verify-sarif-file.py: Use apostrophes instead
of double quotes.
2023-03-27 Kewen Lin <linkw@linux.ibm.com>
PR target/109167
* gcc.target/powerpc/pr109167.c: New test.
2023-03-27 Kewen Lin <linkw@linux.ibm.com>
PR target/109082
* gcc.target/powerpc/pr109082.c: New test.
2023-03-26 Andreas Schwab <schwab@linux-m68k.org>
PR target/106282

View File

@@ -1,3 +1,8 @@
2023-03-27 Jakub Jelinek <jakub@redhat.com>
* testsuite/experimental/net/timer/waitable/dest.cc: Avoid -Wformat
warning if size_t is not unsigned long.
2023-03-22 Jonathan Wakely <jwakely@redhat.com>
* include/bits/shared_ptr_atomic.h (atomic::operator=(nullptr_t)):