Daily bump.
This commit is contained in:
parent
7a1b179b08
commit
1f8a09d2f3
7 changed files with 122 additions and 1 deletions
|
@ -1,3 +1,40 @@
|
|||
2022-02-14 Martin Sebor <msebor@redhat.com>
|
||||
|
||||
PR middle-end/104355
|
||||
* doc/invoke.texi (-Warray-bounds): Update documentation.
|
||||
|
||||
2022-02-14 Michael Meissner <meissner@the-meissners.org>
|
||||
|
||||
PR target/104253
|
||||
* config/rs6000/rs6000.cc (init_float128_ibm): Update the
|
||||
conversion functions used to convert IFmode types.
|
||||
|
||||
2022-02-14 Andrew Stubbs <ams@codesourcery.com>
|
||||
|
||||
* config/gcn/gcn.cc (gcn_expand_reduc_scalar): Use force_reg.
|
||||
|
||||
2022-02-14 Richard Biener <rguenther@suse.de>
|
||||
|
||||
PR tree-optimization/104528
|
||||
* tree-ssa.h (find_released_ssa_name): Declare.
|
||||
* tree-ssa.cc (find_released_ssa_name): Export.
|
||||
* cfgloop.cc (verify_loop_structure): Look for released
|
||||
SSA names in loops nb_iterations.
|
||||
* tree-ssa-dse.cc (pass_dse::execute): Release number of iteration
|
||||
estimates.
|
||||
|
||||
2022-02-14 Richard Biener <rguenther@suse.de>
|
||||
|
||||
PR tree-optimization/104511
|
||||
* tree-ssa-forwprop.cc (simplify_vector_constructor): Avoid
|
||||
touching DFP <-> FP conversions.
|
||||
|
||||
2022-02-14 Richard Biener <rguenther@suse.de>
|
||||
|
||||
PR middle-end/104497
|
||||
* gimplify.cc (gimplify_compound_lval): Make sure the
|
||||
base is a non-register if needed and possible.
|
||||
|
||||
2022-02-13 liuhongt <hongtao.liu@intel.com>
|
||||
|
||||
PR target/103771
|
||||
|
|
|
@ -1 +1 @@
|
|||
20220214
|
||||
20220215
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
2022-02-14 Richard Biener <rguenther@suse.de>
|
||||
|
||||
PR c/104505
|
||||
* c-pretty-print.cc (c_pretty_printer::postfix_expression): Handle
|
||||
internal function calls.
|
||||
|
||||
2022-02-11 Richard Biener <rguenther@suse.de>
|
||||
|
||||
* c-attribs.cc (c_common_attribute_table): Add entry for
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
2022-02-14 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
PR c++/104513
|
||||
* constexpr.cc (potential_constant_expression_1) <case GOTO_EXPR>:
|
||||
Don't punt if returns (target).
|
||||
|
||||
2022-02-11 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
PR c++/104472
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
2022-02-14 Harald Anlauf <anlauf@gmx.de>
|
||||
|
||||
PR fortran/104211
|
||||
* expr.cc (find_array_section): Replace assertion by error
|
||||
recovery when encountering bad array constructor.
|
||||
|
||||
2022-02-13 Mikael Morin <mikael@gcc.gnu.org>
|
||||
|
||||
PR fortran/104228
|
||||
|
|
|
@ -1,3 +1,39 @@
|
|||
2022-02-14 Michael Meissner <meissner@the-meissners.org>
|
||||
|
||||
PR target/104253
|
||||
* gcc.target/powerpc/pr104253.c: New test.
|
||||
|
||||
2022-02-14 Harald Anlauf <anlauf@gmx.de>
|
||||
|
||||
PR fortran/104211
|
||||
* gfortran.dg/pr104211.f90: New test.
|
||||
|
||||
2022-02-14 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
PR c++/104513
|
||||
* g++.dg/cpp1y/constexpr-104513.C: New test.
|
||||
* g++.dg/cpp2a/constexpr-dtor12.C: New test.
|
||||
|
||||
2022-02-14 Richard Biener <rguenther@suse.de>
|
||||
|
||||
PR tree-optimization/104528
|
||||
* gfortran.dg/pr104528.f: New testcase.
|
||||
|
||||
2022-02-14 Richard Biener <rguenther@suse.de>
|
||||
|
||||
PR tree-optimization/104511
|
||||
* gcc.dg/pr104511.c: New testcase.
|
||||
|
||||
2022-02-14 Richard Biener <rguenther@suse.de>
|
||||
|
||||
PR c/104505
|
||||
* c-c++-common/pr104505.c: New testcase.
|
||||
|
||||
2022-02-14 Richard Biener <rguenther@suse.de>
|
||||
|
||||
PR middle-end/104497
|
||||
* c-c++-common/torture/pr104497.c: New testcase.
|
||||
|
||||
2022-02-13 Mikael Morin <mikael@gcc.gnu.org>
|
||||
|
||||
PR fortran/104228
|
||||
|
|
|
@ -1,3 +1,33 @@
|
|||
2022-02-14 Jonathan Wakely <jwakely@redhat.com>
|
||||
|
||||
PR libstdc++/100912
|
||||
* config/locale/gnu/c_locale.h (__convert_from_v): Use inline
|
||||
namespace for IEEE128 long double mode.
|
||||
* config/os/gnu-linux/ldbl-ieee128-extra.ver: Add new symbol
|
||||
version and export __gnu_cxx_ieee128::__convert_from_v.
|
||||
* include/bits/locale_facets_nonio.tcc (money_put::__do_put):
|
||||
Make __ibm128 overload use snprintf directly
|
||||
* testsuite/util/testsuite_abi.cc: Add new symbol version.
|
||||
Remove stable IEEE128/LDBL versions.
|
||||
|
||||
2022-02-14 Jonathan Wakely <jwakely@redhat.com>
|
||||
|
||||
PR libstdc++/103891
|
||||
* include/bits/c++config (_GLIBCXX_HAVE_COND_TRIVIAL_SPECIAL_MEMBERS):
|
||||
Remove.
|
||||
* include/std/variant: Check feature test macros instead.
|
||||
* include/std/version: Likewise.
|
||||
|
||||
2022-02-14 Jonathan Wakely <jwakely@redhat.com>
|
||||
|
||||
* testsuite/20_util/unsynchronized_pool_resource/allocate.cc:
|
||||
Fix typo.
|
||||
|
||||
2022-02-14 Jonathan Wakely <jwakely@redhat.com>
|
||||
|
||||
* src/c++17/floating_to_chars.cc (FLOAT128_TO_CHARS): Depend on
|
||||
LONG_DOUBLE_ALT128_COMPAT instead of USE_FLOAT128.
|
||||
|
||||
2022-02-11 Jonathan Wakely <jwakely@redhat.com>
|
||||
|
||||
* testsuite/20_util/temporary_buffer.cc: Fix dg-warning target
|
||||
|
|
Loading…
Add table
Reference in a new issue