From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2168) id C37B23858C78; Thu, 3 Nov 2022 00:18:09 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org C37B23858C78 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1667434689; bh=3hwco8tX6TnULf7ObYKAyM+Ejlv0is45tyUhepa6Phs=; h=From:To:Subject:Date:From; b=cYD6R1viIIE1ELwfR/kiETznPLzpjijAQqjTEX4aCYMECB7XVoMClSL+NCmKXQvfB 3Mj6drOwpW5phT0upEkuco/PqrYMeUllyfavbfhHCj506j+EG1LXh1oqz502dFvobU Q+lBA4F1IXHkhQ5AXdyoPS4dykkDf9EmgrfYYbpk= MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="utf-8" From: GCC Administrator To: gcc-cvs@gcc.gnu.org, libstdc++-cvs@gcc.gnu.org Subject: [gcc r13-3619] Daily bump. X-Act-Checkin: gcc X-Git-Author: GCC Administrator X-Git-Refname: refs/heads/master X-Git-Oldrev: 41602c85ac2414edfbca5c4b0ba520d47f0189ce X-Git-Newrev: 58035eeece7894d1936db6bf0dd4f8eedd07a479 Message-Id: <20221103001809.C37B23858C78@sourceware.org> Date: Thu, 3 Nov 2022 00:18:09 +0000 (GMT) List-Id: https://gcc.gnu.org/g:58035eeece7894d1936db6bf0dd4f8eedd07a479 commit r13-3619-g58035eeece7894d1936db6bf0dd4f8eedd07a479 Author: GCC Administrator Date: Thu Nov 3 00:17:32 2022 +0000 Daily bump. Diff: --- gcc/ChangeLog | 29 +++++++++++++++++++++++++++++ gcc/DATESTAMP | 2 +- gcc/testsuite/ChangeLog | 9 +++++++++ libgomp/ChangeLog | 35 +++++++++++++++++++++++++++++++++++ libstdc++-v3/ChangeLog | 40 ++++++++++++++++++++++++++++++++++++++++ 5 files changed, 114 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index fcf39f0c82e..ecbd2f83af7 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,32 @@ +2022-11-02 Christoph Müllner + + * common/config/riscv/riscv-common.cc: Add zawrs extension. + * config/riscv/riscv-opts.h (MASK_ZAWRS): New. + (TARGET_ZAWRS): New. + * config/riscv/riscv.opt: New. + +2022-11-02 Rasmus Villemoes + + PR driver/93371 + * gcc.cc (ASM_MAP): Honour -ffile-prefix-map. + +2022-11-02 Aldy Hernandez + + * value-range.cc (frange::contains_p): Fix signed zero handling. + (range_tests_signed_zeros): New test. + +2022-11-02 Rainer Orth + + * builtins.cc (mathfn_built_in_2): #undef HUGE_VAL, NAN. + +2022-11-02 Xionghu Luo + + PR target/100866 + * config/rs6000/altivec.md: (*altivec_vrl): Named to... + (altivec_vrl): ...this. + * config/rs6000/vsx.md (revb_): Call vspltish and vrlh when + target is Power8 and mode is V8HI. + 2022-11-01 David Seifert * configure.ac: Add AC_CACHE_CHECK(..., gcc_cv_sys_sdt_h). diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index a8fe89b316a..99ca02330bd 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20221102 +20221103 diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 525604d9c02..b397adf8d32 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,12 @@ +2022-11-02 Christoph Müllner + + * gcc.target/riscv/zawrs.c: New test. + +2022-11-02 Xionghu Luo + + PR target/100866 + * gcc.target/powerpc/pr100866-2.c: New. + 2022-11-01 Nathan Sidwell * g++.dg/abi/lambda-sig1-18.C: New. diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog index 477b35fa47a..7302bde4052 100644 --- a/libgomp/ChangeLog +++ b/libgomp/ChangeLog @@ -1,3 +1,38 @@ +2022-11-02 Thomas Schwinge + + PR libgomp/106643 + PR fortran/96668 + * oacc-mem.c (goacc_enter_data_internal): Support + OpenACC 'declare create' with Fortran allocatable arrays, part II. + * testsuite/libgomp.oacc-fortran/declare-allocatable-array_descriptor-1-directive.f90: + Adjust. + * testsuite/libgomp.oacc-fortran/pr106643-1.f90: New. + +2022-11-02 Thomas Schwinge + + PR libgomp/106643 + * oacc-mem.c (goacc_enter_data_internal): Support + OpenACC 'declare create' with Fortran allocatable arrays, part I. + * testsuite/libgomp.oacc-fortran/declare-allocatable-1-directive.f90: + New. + * testsuite/libgomp.oacc-fortran/declare-allocatable-array_descriptor-1-directive.f90: + New. + +2022-11-02 Thomas Schwinge + + * testsuite/libgomp.oacc-fortran/declare-allocatable-array_descriptor-1-runtime.f90: + New. + +2022-11-02 Thomas Schwinge + + * testsuite/libgomp.oacc-fortran/declare-allocatable-1-runtime.f90: + New. + +2022-11-02 Cesar Philippidis + Thomas Schwinge + + * testsuite/libgomp.oacc-fortran/declare-allocatable-1.f90: New. + 2022-10-28 Julian Brown Thomas Schwinge diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index dd1266916b9..65dfc3231ad 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,43 @@ +2022-11-02 Jonathan Wakely + + * libsupc++/eh_globals.cc (constant_init::unused): Remove. + * src/c++11/system_error.cc (constant_init::unused): Remove. + * src/c++17/memory_resource.cc (constant_init::unused): Remove. + +2022-11-02 Patrick Palka + + * src/c++17/floating_from_chars.cc (from_chars_impl): In the + ERANGE case, distinguish between a denormal result and true + underflow by checking if the return value is 0. + +2022-11-02 Jonathan Wakely + + * include/std/expected (expected::_M_invalid): Remove. + +2022-11-02 Jonathan Wakely + + * include/std/variant (__variant::_Multi_array::__untag_result): + Use pragma to suppress warning. + +2022-11-02 Jakub Jelinek + + * libsupc++/compare (_Strong_order::_Fp_fmt): Add _Bfloat16. + (_Strong_order::_Bfloat16): New static data member. + (_Strong_order::_S_fp_fmt): Return _Bfloat16 for std::bfloat16_t. + +2022-11-02 Jakub Jelinek + + * src/c++17/floating_to_chars.cc (__floating_to_chars_hex): Drop const + from unbiased_exponent. Canonicalize denormals such that they have + the leading bit set by shifting effective mantissa up and decreasing + unbiased_exponent. + (__floating_to_chars_shortest): Don't instantiate + __floating_to_chars_hex for float16_t either and use float instead. + * testsuite/20_util/to_chars/float.cc (float_to_chars_test_cases): + Adjust testcases for shortest hex denormals. + * testsuite/20_util/to_chars/double.cc (double_to_chars_test_cases): + Likewise. + 2022-11-01 Jakub Jelinek * include/std/charconv (__from_chars_float16_t,