From eb84e8d3e275ec8d6e35f597faaa980e2e4a369d Mon Sep 17 00:00:00 2001 From: GCC Administrator Date: Thu, 4 Jan 2024 00:18:45 +0000 Subject: [PATCH] Daily bump. --- contrib/ChangeLog | 5 +++++ gcc/ChangeLog | 42 +++++++++++++++++++++++++++++++++++++++++ gcc/DATESTAMP | 2 +- gcc/ada/ChangeLog | 5 +++++ gcc/c/ChangeLog | 5 +++++ gcc/cp/ChangeLog | 11 +++++++++++ gcc/d/ChangeLog | 4 ++++ gcc/fortran/ChangeLog | 14 ++++++++++++++ gcc/go/ChangeLog | 4 ++++ gcc/testsuite/ChangeLog | 15 +++++++++++++++ libgomp/ChangeLog | 4 ++++ libitm/ChangeLog | 4 ++++ libquadmath/ChangeLog | 4 ++++ libstdc++-v3/ChangeLog | 7 +++++++ 14 files changed, 125 insertions(+), 1 deletion(-) diff --git a/contrib/ChangeLog b/contrib/ChangeLog index e3b7a4db62e4..02de42f2dfc0 100644 --- a/contrib/ChangeLog +++ b/contrib/ChangeLog @@ -1,3 +1,8 @@ +2024-01-03 Jakub Jelinek + + * update-copyright.py (GenericFilter): Skip gpl_v3_without_node.texi. + (GCCFilter): Skip GmcOptions.cc. + 2023-12-21 Alexandre Oliva * compare_tests: Add tool to test lines. Match tabs besides diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a935ce0fb69e..4b0e6c69e119 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,45 @@ +2024-01-03 Kwok Cheung Yeung + + * tree-core.h (enum omp_clause_code): Move OMP_CLAUSE_INDIRECT to before + OMP_CLAUSE__SIMDUID_. + * tree.cc (omp_clause_num_ops): Update position of entry for + OMP_CLAUSE_INDIRECT to correspond with omp_clause_code. + (omp_clause_code_name): Likewise. + +2024-01-03 Kwok Cheung Yeung + + * config/nvptx/nvptx.cc (nvptx_record_offload_symbol): Restucture + printing of FUNC_MAP/IND_FUNC_MAP labels. + +2024-01-03 Jakub Jelinek + + * gcc.cc (process_command): Update copyright notice dates. + * gcov-dump.cc (print_version): Ditto. + * gcov.cc (print_version): Ditto. + * gcov-tool.cc (print_version): Ditto. + * gengtype.cc (create_file): Ditto. + * doc/cpp.texi: Bump @copying's copyright year. + * doc/cppinternals.texi: Ditto. + * doc/gcc.texi: Ditto. + * doc/gccint.texi: Ditto. + * doc/gcov.texi: Ditto. + * doc/install.texi: Ditto. + * doc/invoke.texi: Ditto. + +2024-01-03 Xi Ruoyao + + * config/loongarch/simd.md (fmax3): New define_insn. + (fmin3): Likewise. + (reduc_fmax_scal_3): New define_expand. + (reduc_fmin_scal_3): Likewise. + +2024-01-03 Juzhe-Zhong + + PR target/113112 + * config/riscv/riscv-vector-costs.cc (compute_nregs_for_mode): Add rgroup info. + (max_number_of_live_regs): Ditto. + (has_unexpected_spills_p): Ditto. + 2024-01-02 Jun Sha (Joshua) Jin Ma Xianmiao Qu diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index 53df00196833..e5d362319032 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20240103 +20240104 diff --git a/gcc/ada/ChangeLog b/gcc/ada/ChangeLog index dc0c0dfb3863..0446fa06cc9a 100644 --- a/gcc/ada/ChangeLog +++ b/gcc/ada/ChangeLog @@ -1,3 +1,8 @@ +2024-01-03 Jakub Jelinek + + * gnat_ugn.texi: Bump @copying's copyright year. + * gnat_rm.texi: Likewise. + Copyright (C) 2024 Free Software Foundation, Inc. diff --git a/gcc/c/ChangeLog b/gcc/c/ChangeLog index 7670dea2f692..3e2b5b2e6e65 100644 --- a/gcc/c/ChangeLog +++ b/gcc/c/ChangeLog @@ -1,3 +1,8 @@ +2024-01-03 Kwok Cheung Yeung + + * c-parser.cc (c_parser_omp_clause_name): Move handling of indirect + clause to correspond to alphabetical order. + 2023-12-30 Martin Uecker * c-typeck.cc (tagged_types_tu_compatible_p): Revise. diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index dc0c0dfb3863..8bc7b09367f6 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,14 @@ +2024-01-03 Patrick Palka + + PR c++/113064 + * call.cc (reference_binding): Still try a conversion via a + temporary if a direct conversion was bad. + +2024-01-03 Kwok Cheung Yeung + + * parser.cc (cp_parser_omp_clause_name): Move handling of indirect + clause to correspond to alphabetical order. + Copyright (C) 2024 Free Software Foundation, Inc. diff --git a/gcc/d/ChangeLog b/gcc/d/ChangeLog index dc0c0dfb3863..20365ea432c6 100644 --- a/gcc/d/ChangeLog +++ b/gcc/d/ChangeLog @@ -1,3 +1,7 @@ +2024-01-03 Jakub Jelinek + + * gdc.texi: Bump @copyrights-d year. + Copyright (C) 2024 Free Software Foundation, Inc. diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index dc0c0dfb3863..6c2f8907c86c 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,17 @@ +2024-01-03 Harald Anlauf + + * trans-types.cc (gfc_get_nodesc_array_type): Clear used gmp + variables. + +2024-01-03 Jakub Jelinek + + * gfortranspec.cc (lang_specific_driver): Update copyright notice + dates. + * gfc-internals.texi: Bump @copying's copyright year. + * gfortran.texi: Ditto. + * intrinsic.texi: Ditto. + * invoke.texi: Ditto. + Copyright (C) 2024 Free Software Foundation, Inc. diff --git a/gcc/go/ChangeLog b/gcc/go/ChangeLog index 46962735c16c..9edc3fa094e3 100644 --- a/gcc/go/ChangeLog +++ b/gcc/go/ChangeLog @@ -1,3 +1,7 @@ +2024-01-03 Jakub Jelinek + + * gccgo.texi: Bump @copyrights-go year. + 2023-07-05 Robin Dapp Juzhe-Zhong diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 47b1e679d7e2..da5593a2670e 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,18 @@ +2024-01-03 Patrick Palka + + PR c++/113064 + * g++.dg/cpp0x/rv-conv4.C: New test. + * g++.dg/cpp0x/rv-conv5.C: New test. + +2024-01-03 Xi Ruoyao + + * gcc.target/loongarch/vfmax-vfmin.c: New test. + +2024-01-03 Juzhe-Zhong + + PR target/113112 + * gcc.dg/vect/costmodel/riscv/rvv/pr113112-5.c: New test. + 2024-01-02 Szabolcs Nagy * gfortran.dg/vect/vect-8.f90: Accept more vectorized loops. diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog index 473299fe3a55..d0d96741c577 100644 --- a/libgomp/ChangeLog +++ b/libgomp/ChangeLog @@ -1,3 +1,7 @@ +2024-01-03 Jakub Jelinek + + * libgomp.texi: Bump @copying's copyright year. + 2023-12-21 Julian Brown * testsuite/libgomp.fortran/target-enter-data-6.f90: Remove XFAIL. diff --git a/libitm/ChangeLog b/libitm/ChangeLog index 1494030bfae5..83aadd151c75 100644 --- a/libitm/ChangeLog +++ b/libitm/ChangeLog @@ -1,3 +1,7 @@ +2024-01-03 Jakub Jelinek + + * libitm.texi: Bump @copying's copyright year. + 2023-10-22 Iain Sandoe * testsuite/lib/libitm.exp: Likewise. diff --git a/libquadmath/ChangeLog b/libquadmath/ChangeLog index f34e13c828c2..43ad9df3b183 100644 --- a/libquadmath/ChangeLog +++ b/libquadmath/ChangeLog @@ -1,3 +1,7 @@ +2024-01-03 Jakub Jelinek + + * libquadmath.texi: Bump @copying's copyright year. + 2023-12-22 Christophe Lyon * Makefile.am: Allow overriding EXEPCT. diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index dc0c0dfb3863..768b9e76fac0 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,10 @@ +2024-01-03 Patrick Palka + + PR testsuite/113175 + * testsuite/std/ranges/iota/max_size_type.cc (test02): Reduce + 'limit' to 100 from 1000 and adjust 'log2_limit' accordingly. + (test03): Likewise. + Copyright (C) 2024 Free Software Foundation, Inc. -- 2.47.2