From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2168) id 9E0AF3858CDB; Sun, 6 Nov 2022 11:08:38 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 9E0AF3858CDB DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1667732918; bh=4yNiiKcqPdXAmcyBjtL0Gj/YUHPaX5pK3D4A95lplpQ=; h=From:To:Subject:Date:From; b=JGRfHfEgpwulpMpumEGdzyW370K2mepqt0TCTGyrSz/CzSOiBzIpZ9k+AZBggQwx4 BCgCjWdsLCBFB+Trn9JTZuUBIQSv9CfYrS87ezxYHz4LZyC1Tp5M7uEmKBMWX69cS6 G/9P/7Nt/nAS/6K17NVxPDHgCdwXm9BsR85wp9BE= MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="utf-8" From: GCC Administrator To: gcc-cvs@gcc.gnu.org Subject: [gcc r11-10366] Daily bump. X-Act-Checkin: gcc X-Git-Author: GCC Administrator X-Git-Refname: refs/heads/releases/gcc-11 X-Git-Oldrev: ae31f6acb2cf9d43a265f42c12f95e4687ac1fa4 X-Git-Newrev: c7c29b742d326b7778cff3d30a5b0c9294bf9ea3 Message-Id: <20221106110838.9E0AF3858CDB@sourceware.org> Date: Sun, 6 Nov 2022 11:08:38 +0000 (GMT) List-Id: https://gcc.gnu.org/g:c7c29b742d326b7778cff3d30a5b0c9294bf9ea3 commit r11-10366-gc7c29b742d326b7778cff3d30a5b0c9294bf9ea3 Author: GCC Administrator Date: Sun Nov 6 11:08:02 2022 +0000 Daily bump. Diff: --- gcc/ChangeLog | 77 +++++++++++++++++++++++++++++++++++++++++++++++++ gcc/DATESTAMP | 2 +- gcc/c/ChangeLog | 19 ++++++++++++ gcc/cp/ChangeLog | 20 +++++++++++++ gcc/testsuite/ChangeLog | 72 +++++++++++++++++++++++++++++++++++++++++++++ libgomp/ChangeLog | 30 +++++++++++++++++++ 6 files changed, 219 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 33cfaf820a8..077608119a5 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,80 @@ +2022-11-05 Jonathan Wakely + + Backported from master: + 2022-11-05 Jonathan Wakely + + PR c/41041 + * doc/cppopts.texi: Document -fwide-exec-charset defaults + correctly. + +2022-11-04 Eric Botcazou + + * fold-const.c (operand_compare::operand_equal_p) : + Do not take into account operand 2. + (operand_compare::hash_operand) : Likewise. + +2022-11-04 Jakub Jelinek + + Backported from master: + 2022-09-24 Jakub Jelinek + + PR c/107001 + * omp-low.c (lower_omp_taskgroup): Don't add GOMP_RETURN statement + at the end. + * omp-expand.c (build_omp_regions_1): Clarify GF_OMP_TARGET_KIND_DATA + is not stand-alone directive. For GIMPLE_OMP_TASKGROUP, also don't + update parent. + (omp_make_gimple_edges) : Reset + cur_region back after new_omp_region. + +2022-11-04 Jakub Jelinek + + Backported from master: + 2022-08-24 Jakub Jelinek + + PR target/106721 + * config/i386/sse.md + (avx512er_vmrcp28): Fix typo, + mask_opernad3 -> mask_operand3. + +2022-11-04 Jakub Jelinek + + Backported from master: + 2022-07-27 Jakub Jelinek + + PR debug/106261 + * cgraphunit.c (cgraph_node::assemble_thunks_and_aliases): Don't + output asm thunks for -dx. + +2022-11-04 Jakub Jelinek + + Backported from master: + 2022-07-01 Jakub Jelinek + + PR middle-end/106144 + * wide-int.cc (wi::shifted_mask): If end >= prec, return right after + emitting element for shift or if shift is 0 first element after start. + (wide_int_cc_tests): Add tests for equivalency of wi::mask and + wi::shifted_mask with 0 start. + +2022-11-04 Jakub Jelinek + + Backported from master: + 2022-06-21 Jakub Jelinek + + PR rtl-optimization/106032 + * ifcvt.c (noce_try_sign_mask): Punt if !t_unconditional, and + t may_trap_or_fault_p, even if it is cheap. + +2022-11-04 Jakub Jelinek + + Backported from master: + 2022-06-21 Jakub Jelinek + + PR middle-end/106030 + * expr.c (expand_cond_expr_using_cmove): Pass NULL_RTX instead of + temp to expand_operands if mode has been promoted. + 2022-10-27 Torbjörn SVENSSON Backported from master: diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index c96f2246e01..a9017fbbe6b 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20221104 +20221106 diff --git a/gcc/c/ChangeLog b/gcc/c/ChangeLog index b64ceda32ef..2e238018890 100644 --- a/gcc/c/ChangeLog +++ b/gcc/c/ChangeLog @@ -1,3 +1,22 @@ +2022-11-04 Jakub Jelinek + + Backported from master: + 2022-10-24 Jakub Jelinek + + PR c++/107358 + * c-typeck.c (build_binary_op): Pass operands before excess precision + promotions to scalar_to_vector call. + +2022-11-04 Jakub Jelinek + + Backported from master: + 2022-09-24 Jakub Jelinek + + PR c/106981 + * c-typeck.c (c_tree_equal): Only strip NON_LVALUE_EXPRs at the + start. For CONSTANT_CLASS_P or CASE_CONVERT: return false if t1 and + t2 have different types. + 2022-08-02 Lewis Hyatt Backported from master: diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 476ad3737e9..fa81128d0f6 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,23 @@ +2022-11-04 Jakub Jelinek + + Backported from master: + 2022-10-24 Jakub Jelinek + + PR c++/105774 + * constexpr.c (cxx_eval_increment_expression): For signed types + that promote to int, evaluate PLUS_EXPR or MINUS_EXPR in int type. + +2022-11-04 Jakub Jelinek + + Backported from master: + 2022-08-16 Jakub Jelinek + + * typeck.c (cp_build_modify_expr): Implement + P2327R1 - De-deprecating volatile compound operations. Don't warn + for |=, &= or ^= with volatile lhs. + * expr.c (mark_use) : Adjust warning wording, + leave out simple. + 2022-10-24 Marek Polacek Backported from master: diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index d8569827f91..01378db1a5b 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,75 @@ +2022-11-04 Eric Botcazou + + * gnat.dg/opt99.adb: New test. + * gnat.dg/opt99_pkg1.ads, gnat.dg/opt99_pkg1.adb: New helper. + * gnat.dg/opt99_pkg2.ads: Likewise. + +2022-11-04 Jakub Jelinek + + Backported from master: + 2022-10-24 Jakub Jelinek + + PR c++/107358 + * c-c++-common/pr107358.c: New test. + +2022-11-04 Jakub Jelinek + + Backported from master: + 2022-10-24 Jakub Jelinek + + PR c++/105774 + * g++.dg/cpp1y/constexpr-105774.C: New test. + +2022-11-04 Jakub Jelinek + + Backported from master: + 2022-09-24 Jakub Jelinek + + PR c/107001 + * c-c++-common/gomp/pr107001.c: New test. + +2022-11-04 Jakub Jelinek + + Backported from master: + 2022-09-24 Jakub Jelinek + + PR c/106981 + * c-c++-common/gomp/pr106981.c: New test. + +2022-11-04 Jakub Jelinek + + Backported from master: + 2022-08-16 Jakub Jelinek + + * g++.dg/cpp2a/volatile1.C: Adjust for de-deprecation of volatile + compound |=, &= and ^= operations. + * g++.dg/cpp2a/volatile3.C: Likewise. + * g++.dg/cpp2a/volatile5.C: Likewise. + +2022-11-04 Jakub Jelinek + + Backported from master: + 2022-07-27 Jakub Jelinek + + PR debug/106261 + * g++.dg/debug/pr106261.C: New test. + +2022-11-04 Jakub Jelinek + + Backported from master: + 2022-06-21 Jakub Jelinek + + PR rtl-optimization/106032 + * gcc.c-torture/execute/pr106032.c: New test. + +2022-11-04 Jakub Jelinek + + Backported from master: + 2022-06-21 Jakub Jelinek + + PR middle-end/106030 + * gcc.c-torture/compile/pr106030.c: New test. + 2022-10-29 José Rui Faustino de Sousa Backported from master: diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog index 0fa2757d939..9f557f42b6f 100644 --- a/libgomp/ChangeLog +++ b/libgomp/ChangeLog @@ -1,3 +1,33 @@ +2022-11-04 Jakub Jelinek + + Backported from master: + 2022-10-12 Jakub Jelinek + + * task.c (gomp_create_artificial_team): Fix up handling of invocations + from within explicit task. + * target.c (GOMP_target_ext): Likewise. + * testsuite/libgomp.c/task-7.c: New test. + * testsuite/libgomp.c/task-8.c: New test. + * testsuite/libgomp.c-c++-common/task-reduction-17.c: New test. + * testsuite/libgomp.c-c++-common/task-reduction-18.c: New test. + +2022-11-04 Jakub Jelinek + + Backported from master: + 2022-09-24 Jakub Jelinek + + PR c/106981 + * testsuite/libgomp.c-c++-common/pr106981.c: New test. + +2022-11-04 Jakub Jelinek + + Backported from master: + 2022-06-21 Jakub Jelinek + Paul Iannetta + + PR libgomp/106045 + * testsuite/libgomp.c/target-31.c: Add private (i) clause. + 2022-04-21 Release Manager * GCC 11.3.0 released.