From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2168) id 439AF3858D35; Fri, 30 Jun 2023 00:22:03 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 439AF3858D35 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1688084523; bh=n8cIDAkSG4uiXY9OipgnSBbIwuwr7VDDUwI2vcWnFok=; h=From:To:Subject:Date:From; b=nGPjuL9SCAzVpXaLCO0tGuihooCc4nKEv/x6xWZnBsEZlx0ONZ4gb5CDtTjeWynSc 1J7+Fr7qPjV8sKiPbaY2cUuhgq5MEcufftM/yIyTbphrRwu6+C7Z5u47Y0p87+Wnkp yIEWoBi3gVT3M2KjuzIDJ41gEfBGaTsyum21dzIA= MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: GCC Administrator To: gcc-cvs@gcc.gnu.org, libstdc++-cvs@gcc.gnu.org Subject: [gcc r13-7514] Daily bump. X-Act-Checkin: gcc X-Git-Author: GCC Administrator X-Git-Refname: refs/heads/releases/gcc-13 X-Git-Oldrev: b7b70cba6564e2988f6430e5238d97b5389a6f1d X-Git-Newrev: e2dd8e421f5c147dc1df462ac6a7a1b83663a43e Message-Id: <20230630002203.439AF3858D35@sourceware.org> Date: Fri, 30 Jun 2023 00:22:03 +0000 (GMT) List-Id: https://gcc.gnu.org/g:e2dd8e421f5c147dc1df462ac6a7a1b83663a43e commit r13-7514-ge2dd8e421f5c147dc1df462ac6a7a1b83663a43e Author: GCC Administrator Date: Fri Jun 30 00:21:39 2023 +0000 Daily bump. Diff: --- gcc/ChangeLog | 19 +++++++ gcc/DATESTAMP | 2 +- gcc/fortran/ChangeLog | 11 ++++ gcc/testsuite/ChangeLog | 46 ++++++++++++++++ libstdc++-v3/ChangeLog | 142 ++++++++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 219 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 2e033132870..3a5bc80db55 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,22 @@ +2023-06-29 liuhongt + + PR rtl-optimization/110237 + * config/i386/sse.md (_store_mask): Refine with + UNSPEC_MASKMOV. + (maskstore_store_mask): New define_insn, it's renamed + from original _store_mask. + +2023-06-29 liuhongt + + PR target/110309 + * config/i386/sse.md (maskload): + Refine pattern with UNSPEC_MASKLOAD. + (maskload): Ditto. + (*_load_mask): Extend mode iterator to + VI12HFBF_AVX512VL. + (*_load): Ditto. + 2023-06-28 Hongyu Wang Backported from master: diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index d3dd503874a..e742d0ec698 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20230629 +20230630 diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index 7be8464352e..7062502a66a 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,14 @@ +2023-06-29 Harald Anlauf + + Backported from master: + 2023-06-13 Harald Anlauf + Mikael Morin + + PR fortran/86277 + * trans-array.cc (gfc_trans_allocate_array_storage): When passing a + zero-sized array with fixed (= non-dynamic) size, allocate temporary + by the caller, not by the callee. + 2023-06-09 Jakub Jelinek Backported from master: diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 43aea725d22..d154a6f462e 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,49 @@ +2023-06-29 Marek Polacek + + Backported from master: + 2023-06-29 Marek Polacek + + * gcc.dg/plugin/crash-test-ice-sarif.c: Use -fno-report-bug. Adjust + scan-sarif-file. + * gcc.dg/plugin/crash-test-ice-stderr.c: Use -fno-report-bug. + * gcc.dg/plugin/crash-test-write-though-null-sarif.c: Use + -fno-report-bug. Adjust scan-sarif-file. + * gcc.dg/plugin/crash-test-write-though-null-stderr.c: Use + -fno-report-bug. + +2023-06-29 Marek Polacek + + Backported from master: + 2023-06-29 Marek Polacek + + * gcc.target/i386/pr104610.c: Use -fno-stack-protector. + * gcc.target/i386/pr69482-1.c: Likewise. + +2023-06-29 Harald Anlauf + + Backported from master: + 2023-06-13 Harald Anlauf + Mikael Morin + + PR fortran/86277 + * gfortran.dg/zero_sized_14.f90: New test. + * gfortran.dg/zero_sized_15.f90: New test. + +2023-06-29 Harald Anlauf + + Backported from master: + 2023-04-19 Harald Anlauf + + PR testsuite/83904 + PR fortran/100297 + * gfortran.dg/allocatable_function_1.f90: Use "__builtin_free " + instead of the naive "free". + * gfortran.dg/reshape_8.f90: Extend pattern from a simple "data". + +2023-06-29 liuhongt + + * gcc.target/i386/pr110309.c: New test. + 2023-06-28 Hongyu Wang Backported from master: diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 9e0279d1674..41d4b7415cf 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,145 @@ +2023-06-29 Jonathan Wakely + + Backported from master: + 2023-05-31 Jonathan Wakely + + * acinclude.m4 (GLIBCXX_ZONEINFO_DIR): Fix for 32-bit pointers + to check __INT_PTR_WIDTH__ instead of sizeof(void*). + * configure: Regenerate. + +2023-06-29 Jonathan Wakely + + Backported from master: + 2023-05-31 Jonathan Wakely + + * acinclude.m4 (GLIBCXX_ZONEINFO_DIR): Extend logic for avr and + msp430 to all 16-bit targets. + * configure: Regenerate. + +2023-06-29 Jonathan Wakely + + Backported from master: + 2023-06-26 Jonathan Wakely + + PR libstdc++/110239 + * include/std/format (__format::__parse_integer): Fix buffer + overflow for wide chars. + (formatter::format): Cast to uintptr_t instead + of uint64_t. + * testsuite/std/format/string.cc: Test too-large widths. + +2023-06-29 Jonathan Wakely + + Backported from master: + 2023-06-09 Jonathan Wakely + + PR libstdc++/110149 + * include/std/format (formatter::parse): + Only alow 0 and P for C++26 and non-strict modes. + (formatter::format): Use toupper for P + type, and insert zero-fill characters for 0 option. + * testsuite/std/format/functions/format.cc: Check pointer + formatting. Only check P2510R3 extensions conditionally. + * testsuite/std/format/parse_ctx.cc: Only check P2510R3 + extensions conditionally. + +2023-06-29 Jonathan Wakely + + Backported from master: + 2023-05-16 Jonathan Wakely + + PR libstdc++/109741 + * acinclude.m4 (GLIBCXX_CHECK_ALIGNAS_CACHELINE): Define. + * config.h.in: Regenerate. + * configure: Regenerate. + * configure.ac: Use GLIBCXX_CHECK_ALIGNAS_CACHELINE. + * src/c++11/shared_ptr.cc (__gnu_internal::get_mutex): Do not + align lock table if not supported. use __GCC_DESTRUCTIVE_SIZE + instead of hardcoded 64. + +2023-06-29 Jonathan Wakely + + Backported from master: + 2023-06-09 Jonathan Wakely + + PR libstdc++/100285 + * include/experimental/internet [IPPROTO_TCP || IPPROTO_UDP] + (basic_endpoint, basic_resolver_entry, resolver_base) + (basic_resolver_results, basic_resolver): Only define if the tcp + or udp protocols will be defined. + +2023-06-29 Jonathan Wakely + + Backported from master: + 2023-06-07 Jonathan Wakely + + * testsuite/20_util/duration/cons/2.cc: Use values that aren't + affected by rounding. + * testsuite/20_util/from_chars/5.cc: Cast arithmetic result to + double before comparing for equality. + * testsuite/20_util/from_chars/6.cc: Likewise. + * testsuite/20_util/variant/86874.cc: Use values that aren't + affected by rounding. + * testsuite/25_algorithms/lower_bound/partitioned.cc: Compare to + original value instead of to floating-point-literal. + * testsuite/26_numerics/random/discrete_distribution/cons/range.cc: + Cast arithmetic result to double before comparing for equality. + * testsuite/26_numerics/random/piecewise_constant_distribution/cons/range.cc: + Likewise. + * testsuite/26_numerics/random/piecewise_linear_distribution/cons/range.cc: + Likewise. + * testsuite/26_numerics/valarray/transcend.cc (eq): Check that + the absolute difference is less than 0.01 instead of comparing + to two decimal places. + * testsuite/27_io/basic_istream/extractors_arithmetic/char/01.cc: + Cast arithmetic result to double before comparing for equality. + * testsuite/27_io/basic_istream/extractors_arithmetic/char/09.cc: + Likewise. + * testsuite/27_io/basic_istream/extractors_arithmetic/char/10.cc: + Likewise. + * testsuite/27_io/basic_istream/extractors_arithmetic/wchar_t/01.cc: + Likewise. + * testsuite/27_io/basic_istream/extractors_arithmetic/wchar_t/09.cc: + Likewise. + * testsuite/27_io/basic_istream/extractors_arithmetic/wchar_t/10.cc: + Likewise. + * testsuite/ext/random/hoyt_distribution/cons/parms.cc: Likewise. + +2023-06-29 Jonathan Wakely + + Backported from master: + 2023-05-31 Jonathan Wakely + + * include/std/scoped_allocator (scoped_allocator_adaptor): Add + noexcept to all constructors except the default constructor. + (scoped_allocator_adaptor::inner_allocator): Add noexcept. + (scoped_allocator_adaptor::outer_allocator): Likewise. + * testsuite/20_util/scoped_allocator/noexcept.cc: New test. + +2023-06-29 Jonathan Wakely + + Backported from master: + 2023-06-09 Jonathan Wakely + + * testsuite/23_containers/deque/modifiers/emplace/52799.cc: + Removed. + * testsuite/23_containers/deque/modifiers/emplace/const_iterator.cc: + Removed. + * testsuite/23_containers/list/modifiers/emplace/52799.cc: + Removed. + * testsuite/23_containers/list/modifiers/emplace/const_iterator.cc: + Removed. + * testsuite/23_containers/vector/modifiers/emplace/52799.cc: + Removed. + * testsuite/23_containers/vector/modifiers/emplace/const_iterator.cc: + Removed. + * testsuite/23_containers/deque/modifiers/emplace/1.cc: New + test. + * testsuite/23_containers/list/modifiers/emplace/1.cc: New + test. + * testsuite/23_containers/vector/modifiers/emplace/1.cc: New + test. + 2023-06-06 Jonathan Wakely Backported from master: