From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2168) id E1A59385770C; Sat, 17 Feb 2024 00:17:29 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org E1A59385770C DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1708129049; bh=kzCj9Mv1YC+jzg3LS5AGbORhyXD3Fs8doOTA8b2llXo=; h=From:To:Subject:Date:From; b=l10yE8OQqNWh/Zhxo7wJ7nm9asDe+1zIzRPH43R3fKVTCVM7RP0IsPzIjTVdiQSke qkYOYVBRi3yLQweK0gs8qHWW++txHWQWaqImP2sfRxQhLs9ryTC9OZJeLpQCGwXtts LC80CVAaBnofJ7S+cGaW0HhHQnJUNWUrvt5C20zM= 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 r14-9043] Daily bump. X-Act-Checkin: gcc X-Git-Author: GCC Administrator X-Git-Refname: refs/heads/master X-Git-Oldrev: 05ad8fb55a55f1e201fd781c84682a7c0bbd4d97 X-Git-Newrev: d70f155b0747799d65cbb7d86454ebeac14d1b69 Message-Id: <20240217001729.E1A59385770C@sourceware.org> Date: Sat, 17 Feb 2024 00:17:29 +0000 (GMT) List-Id: https://gcc.gnu.org/g:d70f155b0747799d65cbb7d86454ebeac14d1b69 commit r14-9043-gd70f155b0747799d65cbb7d86454ebeac14d1b69 Author: GCC Administrator Date: Sat Feb 17 00:17:08 2024 +0000 Daily bump. Diff: --- gcc/ChangeLog | 52 +++++++++++++++++++++++++++++++++++++++++++ gcc/DATESTAMP | 2 +- gcc/cp/ChangeLog | 26 ++++++++++++++++++++++ gcc/po/ChangeLog | 4 ++++ gcc/testsuite/ChangeLog | 59 +++++++++++++++++++++++++++++++++++++++++++++++++ libcpp/po/ChangeLog | 4 ++++ libgcc/ChangeLog | 9 ++++++++ libsanitizer/ChangeLog | 6 +++++ libstdc++-v3/ChangeLog | 24 ++++++++++++++++++++ 9 files changed, 185 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 7ece37208a12..48a1e333a812 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,55 @@ +2024-02-16 Edwin Lu + + * doc/sourcebuild.texi: add scan-assembler-bound + +2024-02-16 Jason Merrill + + * gdbhooks.py: Fix regex syntax. + +2024-02-16 Richard Biener + + PR tree-optimization/113895 + * tree-ssa-sccvn.cc (copy_reference_ops_from_ref): Disable + consistency checking when there are out-of-bound array + accesses. Allow -1 off when from an array reference with + constant index. + +2024-02-16 Kito Cheng + + PR target/106543 + * config/riscv/riscv.md (*sge_): Fix asm + pattern. + +2024-02-16 Rainer Orth + + * doc/sourcebuild.texi (Effective-Target Keywords, Other + attribugs): Document linker_plugin. + (Require Support): Document dg-require-linker-plugin. + +2024-02-16 Kito Cheng + + PR target/109349 + * common/config/riscv/riscv-common.cc (riscv_arch_help): New. + * config/riscv/riscv-protos.h (RISCV_MAJOR_VERSION_BASE): New. + (RISCV_MINOR_VERSION_BASE): Ditto. + (RISCV_REVISION_VERSION_BASE): Ditto. + * config/riscv/riscv-c.cc (riscv_ext_version_value): Use enum + rather than magic number. + * config/riscv/riscv.h (riscv_arch_help): New. + (EXTRA_SPEC_FUNCTIONS): Add riscv_arch_help. + (DRIVER_SELF_SPECS): Handle -march=help, -print-supported-extensions and + --print-supported-extensions. + * config/riscv/riscv.opt (march=help): New. + (print-supported-extensions): New. + (-print-supported-extensions): New. + * doc/invoke.texi (RISC-V Options): Document -march=help. + +2024-02-16 Tejas Belagod + + PR target/113780 + * config/arm/arm.cc (arm_function_ok_for_sibcall): Don't allow tailcalls + for indirect calls with 4 or more arguments in pac-enabled functions. + 2024-02-15 David Faust * config/bpf/bpf.md (zero_extendqidi2): Correct asm template to diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index 3821bb5b955a..70fc80dac6c0 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20240216 +20240217 diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index f2ad98de3054..67b07f14df4e 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,29 @@ +2024-02-16 Marek Polacek + + DR 1351 + * search.cc (maybe_check_overriding_exception_spec): Don't error about + a looser exception specification if the overrider is deleted. + +2024-02-16 Marek Polacek + + PR c++/113789 + PR c++/113853 + * typeck.cc (treat_lvalue_as_rvalue_p): Update code to better + reflect [expr.prim.id.unqual]#4.2. + +2024-02-16 Jakub Jelinek + + PR c++/113929 + * parser.cc (cp_parser_parameter_declaration): Diagnose this specifier + on template parameter declaration. + +2024-02-16 Patrick Palka + + * module.cc (trees_out::core_bools): Stream TREE_UNAVAILABLE. + (trees_in::core_bools): Likewise. + (trees_out::core_vals): Stream LAMBDA_EXPR_REGEN_INFO. + (trees_in::core_vals): Likewise. + 2024-02-14 Nathaniel Shead PR c++/113708 diff --git a/gcc/po/ChangeLog b/gcc/po/ChangeLog index 92cfc9d5404f..c8669c926a5b 100644 --- a/gcc/po/ChangeLog +++ b/gcc/po/ChangeLog @@ -1,3 +1,7 @@ +2024-02-16 Joseph Myers + + * gcc.pot: Regenerate. + 2024-02-07 Joseph Myers * zh_CN.po: Update. diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 288e3841f70c..a66a1155e64c 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,62 @@ +2024-02-16 Andrew Pinski + + * g++.dg/torture/vector-struct-1.C: Add -Wstrict-aliasing. + +2024-02-16 Marek Polacek + + DR 1351 + * g++.dg/cpp0x/noexcept82.C: New test. + +2024-02-16 Andrew Pinski + + PR c++/97990 + * g++.dg/torture/vector-struct-1.C: New test. + +2024-02-16 Edwin Lu + + * lib/scanasm.exp: add scan-assembler-bound + +2024-02-16 Patrick Palka + + PR c++/111682 + * g++.dg/cpp1y/var-templ86.C: New test. + +2024-02-16 Marek Polacek + + PR c++/113789 + PR c++/113853 + * g++.dg/cpp0x/sfinae69.C: Remove dg-bogus. + * g++.dg/cpp0x/sfinae70.C: New test. + * g++.dg/cpp0x/sfinae71.C: New test. + * g++.dg/cpp0x/sfinae72.C: New test. + * g++.dg/cpp2a/implicit-move4.C: New test. + +2024-02-16 Jakub Jelinek + + PR c++/113929 + * g++.dg/parse/pr113929.C: New test. + +2024-02-16 Richard Biener + + PR tree-optimization/113895 + * gcc.dg/torture/pr113895-2.c: New testcase. + * gcc.dg/torture/pr113895-3.c: Likewise. + * gcc.dg/torture/pr113895-4.c: Likewise. + +2024-02-16 Rainer Orth + + PR ipa/98237 + * lib/target-supports.exp (is-effective-target): Handle + linker_plugin. + * gcc.dg/lto/modref-3_0.c: Require linker_plugin support. + * gcc.dg/lto/modref-4_0.c: Likewise. + +2024-02-16 Tejas Belagod + + PR target/113780 + * lib/target-supports.exp (v8_1m_main_pacbti): Add __ARM_FEATURE_PAUTH. + * gcc.target/arm/pac-sibcall.c: New. + 2024-02-15 Kwok Cheung Yeung * gfortran.dg/gomp/declare-target-4.f90 (f1): Update expected warning. diff --git a/libcpp/po/ChangeLog b/libcpp/po/ChangeLog index 03a3e1f450e3..18d025a92158 100644 --- a/libcpp/po/ChangeLog +++ b/libcpp/po/ChangeLog @@ -1,3 +1,7 @@ +2024-02-16 Joseph Myers + + * cpplib.pot: Regenerate. + 2023-05-09 Joseph Myers * ru.po: Update. diff --git a/libgcc/ChangeLog b/libgcc/ChangeLog index 341e82e14e5b..061929b4dcb8 100644 --- a/libgcc/ChangeLog +++ b/libgcc/ChangeLog @@ -1,3 +1,12 @@ +2024-02-16 Matteo Italia + + PR libgcc/113850 + * config/i386/gthr-win32-cond.c (__gthr_win32_abs_to_rel_time): + fix absolute timespec to relative milliseconds count + conversion (it incorrectly returned seconds instead of + milliseconds); this avoids spurious wakeups in + __gthr_win32_cond_timedwait + 2024-02-14 Jakub Jelinek H.J. Lu diff --git a/libsanitizer/ChangeLog b/libsanitizer/ChangeLog index 29d84d57d1fa..a5681c60b569 100644 --- a/libsanitizer/ChangeLog +++ b/libsanitizer/ChangeLog @@ -1,3 +1,9 @@ +2024-02-16 Rainer Orth + + PR sanitizer/113785 + * asan/asan_interceptors.cpp: Cherry-pick llvm-project revision + 8c2033719a843a1880427a5e8caa5563248bce78. + 2024-02-06 chenguoqi * configure.tgt: Enable tsan and lsan for loongarch64. diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index a0889503cfc4..0b0896f597cc 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,27 @@ +2024-02-16 Jonathan Wakely + + PR libstdc++/87744 + PR libstdc++/113961 + * testsuite/26_numerics/random/pr60037-neg.cc: Adjust dg-error + line number. + +2024-02-16 Jonathan Wakely + + PR libstdc++/87744 + PR libstdc++/113931 + * testsuite/26_numerics/random/pr60037-neg.cc: Adjust dg-error + line number. + +2024-02-16 Jonathan Wakely + + * doc/xml/manual/debug_mode.xml: Update docs for backtraces. + * doc/html/manual/debug_mode_using.html: Regenerate. + +2024-02-16 Jonathan Wakely + + * doc/xml/manual/test.xml: Fix spelling of elements. + * doc/html/manual/test.html: Regenerate. + 2024-02-15 Jonathan Wakely PR libstdc++/113806