From 4341106354c6a463ce3628a4ef9c1a1d37193b59 Mon Sep 17 00:00:00 2001 From: GCC Administrator Date: Sat, 25 Feb 2023 00:17:49 +0000 Subject: Daily bump. --- gcc/ChangeLog | 102 ++++++++++++++++++++++++++++++++++++++++++++++++ gcc/DATESTAMP | 2 +- gcc/fortran/ChangeLog | 18 +++++++++ gcc/po/ChangeLog | 6 +++ gcc/testsuite/ChangeLog | 36 +++++++++++++++++ 5 files changed, 163 insertions(+), 1 deletion(-) (limited to 'gcc') diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c9e9927..bbabd38 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,105 @@ +2023-02-24 Richard Biener + + * vec.h (vec::m_vecdata): Remove. + (vec::m_vecpfx): Align as T to avoid + changing alignment of vec and simplifying + address. + (vec::address): Compute as this + 1. + (vec::embedded_size): Use sizeof the + vector instead of the offset of the m_vecdata member. + (auto_vec::m_data): Turn storage into + uninitialized unsigned char. + (auto_vec::auto_vec): Allow allocation of one + stack member. Initialize m_vec in a special way to + avoid later stringop overflow diagnostics. + * vec.cc (test_auto_alias): New. + (vec_cc_tests): Call it. + +2023-02-24 Richard Biener + + * vec.h (vec::lower_bound): Adjust to + take a const reference to the object, use address to + access data. + (vec::contains): Use address to access data. + (vec::operator[]): Use address instead of + m_vecdata to access data. + (vec::iterate): Likewise. + (vec::copy): Likewise. + (vec::quick_push): Likewise. + (vec::pop): Likewise. + (vec::quick_insert): Likewise. + (vec::ordered_remove): Likewise. + (vec::unordered_remove): Likewise. + (vec::block_remove): Likewise. + (vec::address): Likewise. + +2023-02-24 Martin Liska + + PR sanitizer/108834 + * asan.cc (asan_add_global): Use proper TU name for normal + global variables (and aux_base_name for the artificial one). + +2023-02-24 Jakub Jelinek + + * config/i386/i386-builtin.def: Update description of BDESC + and BDESC_FIRST in file comment to include mask2. + +2023-02-24 Kyrylo Tkachov + + * config/aarch64/aarch64-cores.def (FLAGS): Update comment. + +2023-02-24 Jakub Jelinek + + PR middle-end/108854 + * cgraphclones.cc (duplicate_thunk_for_node): If no parameter + changes are needed, copy at least DECL_ARGUMENTS PARM_DECL + nodes and adjust their DECL_CONTEXT. + +2023-02-24 Jakub Jelinek + + PR target/108881 + * config/i386/i386-builtin.def (__builtin_ia32_cvtne2ps2bf16_v16bf, + __builtin_ia32_cvtne2ps2bf16_v16bf_mask, + __builtin_ia32_cvtne2ps2bf16_v16bf_maskz, + __builtin_ia32_cvtne2ps2bf16_v8bf, + __builtin_ia32_cvtne2ps2bf16_v8bf_mask, + __builtin_ia32_cvtne2ps2bf16_v8bf_maskz, + __builtin_ia32_cvtneps2bf16_v8sf_mask, + __builtin_ia32_cvtneps2bf16_v8sf_maskz, + __builtin_ia32_cvtneps2bf16_v4sf_mask, + __builtin_ia32_cvtneps2bf16_v4sf_maskz, + __builtin_ia32_dpbf16ps_v8sf, __builtin_ia32_dpbf16ps_v8sf_mask, + __builtin_ia32_dpbf16ps_v8sf_maskz, __builtin_ia32_dpbf16ps_v4sf, + __builtin_ia32_dpbf16ps_v4sf_mask, + __builtin_ia32_dpbf16ps_v4sf_maskz): Require also + OPTION_MASK_ISA_AVX512VL. + +2023-02-24 Sebastian Huber + + * config/riscv/t-rtems: Keep only -mcmodel=medany 64-bit multilibs. + Add non-compact 32-bit multilibs. + +2023-02-24 Junxian Zhu + + * config/mips/mips.md (*clo2): New pattern. + +2023-02-24 Prachi Godbole + + * config/mips/mips.h (machine_function): New variable + use_hazard_barrier_return_p. + * config/mips/mips.md (UNSPEC_JRHB): New unspec. + (mips_hb_return_internal): New insn pattern. + * config/mips/mips.cc (mips_attribute_table): Add attribute + use_hazard_barrier_return. + (mips_use_hazard_barrier_return_p): New static function. + (mips_function_attr_inlinable_p): Likewise. + (mips_compute_frame_info): Set use_hazard_barrier_return_p. + Emit error for unsupported architecture choice. + (mips_function_ok_for_sibcall, mips_can_use_return_insn): + Return false for use_hazard_barrier_return. + (mips_expand_epilogue): Emit hazard barrier return. + * doc/extend.texi: Document use_hazard_barrier_return. + 2023-02-23 Max Filippov * config/xtensa/xtensa-dynconfig.cc (config.h, system.h) diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index fb96f27..cd4bc36 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20230224 +20230225 diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index d8cf19c..39f049a8 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,21 @@ +2023-02-24 Rimvydas Jasinskas + + * trans-decl.cc (gfc_finish_var_decl): Apply attribute. + (generate_local_decl): Add diagnostic for dummy and local variables. + +2023-02-24 Mikael Morin + + PR fortran/108923 + * expr.cc (gfc_free_actual_arglist): Free associated_dummy + memory. + (gfc_copy_actual_arglist): Make a copy of the associated_dummy + field if it is set in the original element. + +2023-02-24 Harald Anlauf + + PR fortran/108924 + * frontend-passes.cc (do_subscript): Clear used gmp variable. + 2023-02-23 Arsen Arsenović * invoke.texi: Reorder index entries around @items. diff --git a/gcc/po/ChangeLog b/gcc/po/ChangeLog index 4811e3a..e7782c1 100644 --- a/gcc/po/ChangeLog +++ b/gcc/po/ChangeLog @@ -1,3 +1,9 @@ +2023-02-24 Joseph Myers + + * be.po, da.po, de.po, el.po, es.po, fi.po, fr.po, hr.po, id.po, + ja.po, nl.po, ru.po, sr.po, sv.po, tr.po, uk.po, vi.po, zh_CN.po, + zh_TW.po: Update. + 2023-02-10 Joseph Myers * gcc.pot: Regenerate. diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index b7e53a8..f01e988 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,39 @@ +2023-02-24 Rimvydas Jasinskas + + * gfortran.dg/weak-2.f90: New test. + * gfortran.dg/weak-3.f90: New test. + +2023-02-24 Martin Liska + + PR sanitizer/108834 + * c-c++-common/asan/global-overflow-1.c: Test line and column + info for a global variable. + +2023-02-24 Alexandre Oliva + + PR c++/105224 + * g++.dg/modules/virt-2_a.C: Skip on arm_eabi. + +2023-02-24 Jakub Jelinek + + PR middle-end/108854 + * g++.dg/opt/pr108854.C: New test. + +2023-02-24 Jakub Jelinek + + PR target/108881 + * gcc.target/i386/avx512bf16-pr108881.c: New test. + +2023-02-24 Junxian Zhu + + * gcc.target/mips/clz.c: New test. + * gcc.target/mips/clo.c: New test. + * gcc.target/mips/mips.exp: New option HAS_CLZ. + +2023-02-24 Prachi Godbole + + * gcc.target/mips/hazard-barrier-return-attribute.c: New test. + 2023-02-23 Takayuki 'January June' Suwa * gcc.target/xtensa/elim_GP_regmove_0.c: New test. -- cgit v1.1