Daily bump.
This commit is contained in:
parent
5303b7667d
commit
7c7eac06c3
@ -1,3 +1,40 @@
|
|||||||
|
2023-05-09 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
|
Backported from master:
|
||||||
|
2023-05-09 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
|
PR tree-optimization/109778
|
||||||
|
* wide-int.h (wi::lrotate, wi::rrotate): Call wi::lrshift on
|
||||||
|
wi::zext (x, width) rather than x if width != precision, rather
|
||||||
|
than using wi::zext (right, width) after the shift.
|
||||||
|
* tree-ssa-ccp.cc (bit_value_binop): Call wi::ext on the results
|
||||||
|
of wi::lrotate or wi::rrotate.
|
||||||
|
|
||||||
|
2023-05-09 Kewen Lin <linkw@linux.ibm.com>
|
||||||
|
|
||||||
|
Backported from master:
|
||||||
|
2023-04-26 Kewen Lin <linkw@linux.ibm.com>
|
||||||
|
|
||||||
|
PR target/108758
|
||||||
|
* config/rs6000/rs6000-builtins.def
|
||||||
|
(__builtin_vsx_scalar_cmp_exp_qp_eq, __builtin_vsx_scalar_cmp_exp_qp_gt
|
||||||
|
__builtin_vsx_scalar_cmp_exp_qp_lt,
|
||||||
|
__builtin_vsx_scalar_cmp_exp_qp_unordered): Move from stanza ieee128-hw
|
||||||
|
to power9-vector.
|
||||||
|
|
||||||
|
2023-05-09 Kewen Lin <linkw@linux.ibm.com>
|
||||||
|
|
||||||
|
Backported from master:
|
||||||
|
2023-04-26 Kewen Lin <linkw@linux.ibm.com>
|
||||||
|
|
||||||
|
PR target/109069
|
||||||
|
* config/rs6000/altivec.md (sldoi_to_mov<mode>): Replace predicate
|
||||||
|
easy_vector_constant with const_vector_each_byte_same, add
|
||||||
|
handlings in preparation for !easy_vector_constant, and update
|
||||||
|
VECTOR_UNIT_ALTIVEC_OR_VSX_P with VECTOR_MEM_ALTIVEC_OR_VSX_P.
|
||||||
|
* config/rs6000/predicates.md (const_vector_each_byte_same): New
|
||||||
|
predicate.
|
||||||
|
|
||||||
2023-05-08 Tobias Burnus <tobias@codesourcery.com>
|
2023-05-08 Tobias Burnus <tobias@codesourcery.com>
|
||||||
|
|
||||||
Backported from master:
|
Backported from master:
|
||||||
|
@ -1 +1 @@
|
|||||||
20230509
|
20230510
|
||||||
|
@ -1,3 +1,12 @@
|
|||||||
|
2023-05-09 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
|
Backported from master:
|
||||||
|
2023-05-09 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
|
PR c++/109756
|
||||||
|
* cp-gimplify.cc (process_stmt_assume_attribute): Diagnose pack
|
||||||
|
expansion of assume attribute.
|
||||||
|
|
||||||
2023-05-03 Jason Merrill <jason@redhat.com>
|
2023-05-03 Jason Merrill <jason@redhat.com>
|
||||||
|
|
||||||
Revert:
|
Revert:
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2023-05-09 Joseph Myers <joseph@codesourcery.com>
|
||||||
|
|
||||||
|
* hr.po: Update.
|
||||||
|
|
||||||
2023-04-27 Joseph Myers <joseph@codesourcery.com>
|
2023-04-27 Joseph Myers <joseph@codesourcery.com>
|
||||||
|
|
||||||
* be.po, da.po, de.po, el.po, es.po, fi.po, fr.po, hr.po, id.po,
|
* be.po, da.po, de.po, el.po, es.po, fi.po, fr.po, hr.po, id.po,
|
||||||
|
@ -1,3 +1,39 @@
|
|||||||
|
2023-05-09 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
|
Backported from master:
|
||||||
|
2023-05-09 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
|
PR c++/109756
|
||||||
|
* g++.dg/cpp23/attr-assume11.C: New test.
|
||||||
|
|
||||||
|
2023-05-09 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
|
Backported from master:
|
||||||
|
2023-05-09 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
|
PR tree-optimization/109778
|
||||||
|
* gcc.dg/lto/pr109778_0.c: New test.
|
||||||
|
* gcc.dg/lto/pr109778_1.c: New file.
|
||||||
|
|
||||||
|
2023-05-09 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
|
Backported from master:
|
||||||
|
2023-05-09 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
|
PR tree-optimization/109778
|
||||||
|
* gcc.c-torture/execute/pr109778.c: New test.
|
||||||
|
|
||||||
|
2023-05-09 Kewen Lin <linkw@linux.ibm.com>
|
||||||
|
|
||||||
|
Backported from master:
|
||||||
|
2023-04-26 Kewen Lin <linkw@linux.ibm.com>
|
||||||
|
|
||||||
|
PR target/109069
|
||||||
|
* gcc.target/powerpc/pr109069-1.c: New test.
|
||||||
|
* gcc.target/powerpc/pr109069-2-run.c: New test.
|
||||||
|
* gcc.target/powerpc/pr109069-2.c: New test.
|
||||||
|
* gcc.target/powerpc/pr109069-2.h: New test.
|
||||||
|
|
||||||
2023-05-05 Patrick Palka <ppalka@redhat.com>
|
2023-05-05 Patrick Palka <ppalka@redhat.com>
|
||||||
|
|
||||||
Backported from master:
|
Backported from master:
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2023-05-09 Joseph Myers <joseph@codesourcery.com>
|
||||||
|
|
||||||
|
* ru.po: Update.
|
||||||
|
|
||||||
2023-04-26 Release Manager
|
2023-04-26 Release Manager
|
||||||
|
|
||||||
* GCC 13.1.0 released.
|
* GCC 13.1.0 released.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user