From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2168) id EE64D3858015; Tue, 2 Aug 2022 00:17:29 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org EE64D3858015 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 r13-1923] Daily bump. X-Act-Checkin: gcc X-Git-Author: GCC Administrator X-Git-Refname: refs/heads/master X-Git-Oldrev: e8bc6918b31e63fcaebe1e9dd64e0157d54f1b7a X-Git-Newrev: 325103829ef5996b66fff7ed77cc069c4394395b Message-Id: <20220802001729.EE64D3858015@sourceware.org> Date: Tue, 2 Aug 2022 00:17:29 +0000 (GMT) X-BeenThere: gcc-cvs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 02 Aug 2022 00:17:30 -0000 https://gcc.gnu.org/g:325103829ef5996b66fff7ed77cc069c4394395b commit r13-1923-g325103829ef5996b66fff7ed77cc069c4394395b Author: GCC Administrator Date: Tue Aug 2 00:16:51 2022 +0000 Daily bump. Diff: --- ChangeLog | 5 ++++ config/ChangeLog | 6 +++++ gcc/ChangeLog | 69 +++++++++++++++++++++++++++++++++++++++++++++++++ gcc/DATESTAMP | 2 +- gcc/c/ChangeLog | 7 +++++ gcc/testsuite/ChangeLog | 30 +++++++++++++++++++++ libgfortran/ChangeLog | 7 +++++ lto-plugin/ChangeLog | 6 +++++ 8 files changed, 131 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index ebc62a99f44..38c4d3aa5fc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2022-08-01 Roger Sayle + Arnaud Charlet + + * configure: Regenerate. + 2022-07-31 Roger Sayle PR bootstrap/106472 diff --git a/config/ChangeLog b/config/ChangeLog index 7e2ea8d742e..09fe8c282b1 100644 --- a/config/ChangeLog +++ b/config/ChangeLog @@ -1,3 +1,9 @@ +2022-08-01 Roger Sayle + Arnaud Charlet + + * acx.m4 (AC_PROG_GNAT): Update conftest.adb to include + features required of the host gnat compiler. + 2022-06-01 David Seifert PR plugins/95648 diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 22cf563d32d..cb8e58053da 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,72 @@ +2022-08-01 David Malcolm + + * doc/invoke.texi (-Wanalyzer-putenv-of-auto-var): Fix copy&paste + error. + +2022-08-01 Roger Sayle + Uroš Bizjak + + PR target/106481 + * config/i386/i386-features.cc (timode_scalar_chain::convert_insn): + Convert a CONST_SCALAR_INT_P in a REG_EQUAL note into a V1TImode + CONST_VECTOR. + +2022-08-01 H.J. Lu + + PR target/83782 + * config/i386/i386.cc (ix86_ifunc_ref_local_ok): New. + (TARGET_IFUNC_REF_LOCAL_OK): Use it. + +2022-08-01 Jose E. Marchesi + + PR debug/106263 + * ctfc.h (struct ctf_dtdef): Add field linkage. + * ctfc.cc (ctf_add_function): Set ctti_linkage. + * dwarf2ctf.cc (gen_ctf_function_type): Pass a linkage for + function types and subprograms. + * btfout.cc (btf_asm_func_type): Emit linkage information for the + function. + (btf_dtd_emit_preprocess_cb): Propagate the linkage information + for functions. + +2022-08-01 Andrew Stubbs + Jakub Jelinek + + * omp-simd-clone.cc (simd_clone_adjust): Convert shift_cnt to match + the mask type. + +2022-08-01 Sam Feifer + + PR tree-optimization/104992 + * match.pd (x / y * y == x): New simplification. + +2022-08-01 Aldy Hernandez + + * value-range.cc (tree_compare): New. + (frange::set): Make more general. + (frange::normalize_kind): Cleanup and return bool. + (frange::union_): Use normalize_kind return value. + (frange::intersect): Same. + (frange::verify_range): Remove unnecessary else. + * value-range.h (vrp_val_max): Move before frange class. + (vrp_val_min): Same. + (frange::frange): Remove set to m_type. + +2022-08-01 Aldy Hernandez + + * value-range.cc (vrange::supports_type_p): Use const_tree. + (irange::supports_type_p): Same. + (frange::supports_type_p): Same. + * value-range.h (Value_Range::supports_type_p): Same. + (irange::supports_p): Same. + +2022-08-01 Aldy Hernandez + + * gimple-range-fold.cc (fold_using_range::range_of_phi): Only + query SCEV for integers. + (fold_using_range::range_of_ssa_name_with_loop_info): Remove + irange check. + 2022-07-31 Roger Sayle * config/i386/i386.md (define_expand ti3): For diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index ed14e56feeb..dd67218a4ee 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20220801 +20220802 diff --git a/gcc/c/ChangeLog b/gcc/c/ChangeLog index 3aa672b0b79..cffb462a1dc 100644 --- a/gcc/c/ChangeLog +++ b/gcc/c/ChangeLog @@ -1,3 +1,10 @@ +2022-08-01 David Malcolm + + * c-typeck.cc (build_c_cast): Quote names of address spaces in + diagnostics. + (convert_for_assignment): Add a note to address space mismatch + diagnostics, specifying the expected and actual types. + 2022-07-10 Lewis Hyatt PR preprocessor/97498 diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 781bba72408..28fbfc60184 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,33 @@ +2022-08-01 David Malcolm + + * gcc.target/i386/addr-space-typeck-1.c: New test. + * gcc.target/i386/addr-space-typeck-2.c: New test. + +2022-08-01 Roger Sayle + Uroš Bizjak + + PR target/106481 + * gcc.target/i386/pr106481.c: New test case. + +2022-08-01 H.J. Lu + + PR target/83782 + * gcc.target/i386/pr83782-1.c: Require non-ia32. + * gcc.target/i386/pr83782-2.c: Likewise. + * gcc.target/i386/pr83782-3.c: New test. + +2022-08-01 Jose E. Marchesi + + PR debug/106263 + * gcc.dg/debug/btf/btf-function-4.c: New test. + * gcc.dg/debug/btf/btf-function-5.c: Likewise. + +2022-08-01 Sam Feifer + + PR tree-optimization/104992 + * g++.dg/pr104992-1.C: New test. + * gcc.dg/pr104992.c: New test. + 2022-07-31 Roger Sayle H.J. Lu diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog index d1b2b2c9844..9d7f83d41af 100644 --- a/libgfortran/ChangeLog +++ b/libgfortran/ChangeLog @@ -1,3 +1,10 @@ +2022-08-01 Jakub Jelinek + + PR libfortran/106079 + * io/transfer.c (formatted_transfer_scalar_read, + formatted_transfer_scalar_write): For type BT_REAL with kind 17 + change kind to 16 before calling read_radix or write_{b,o,z}. + 2022-06-29 Jakub Jelinek * mk-kinds-h.sh: Change __float128 to _Float128 in a comment. diff --git a/lto-plugin/ChangeLog b/lto-plugin/ChangeLog index eb37870da29..23cee8daf10 100644 --- a/lto-plugin/ChangeLog +++ b/lto-plugin/ChangeLog @@ -1,3 +1,9 @@ +2022-08-01 Martin Liska + + PR lto/106170 + * configure.ac: Replace $target with $host. + * configure: Regenerate. + 2022-07-14 Martin Liska PR bootstrap/106156