From 9f98cfa51b416a2b40884b7d5202eb4daa801ec0 Mon Sep 17 00:00:00 2001 From: GCC Administrator <gccadmin@gcc.gnu.org> Date: Thu, 19 Jan 2023 00:17:35 +0000 Subject: [PATCH] Daily bump. --- gcc/ChangeLog | 66 +++++++++++++++++++++++++++++++++++++++++ gcc/DATESTAMP | 2 +- gcc/c-family/ChangeLog | 5 ++++ gcc/testsuite/ChangeLog | 36 ++++++++++++++++++++++ libgcc/ChangeLog | 11 +++++++ libgfortran/ChangeLog | 5 ++++ libstdc++-v3/ChangeLog | 30 +++++++++++++++++++ 7 files changed, 154 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a8da61564d1a..ffca6da1def5 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,69 @@ +2023-01-18 Martin Jambor <mjambor@suse.cz> + + PR ipa/107944 + * cgraph.cc (cgraph_node::remove): Check whether nodes up the + lcone_of chain also do not need the body. + +2023-01-18 Richard Biener <rguenther@suse.de> + + Revert: + 2022-12-16 Richard Biener <rguenther@suse.de> + + PR middle-end/108086 + * tree-inline.cc (remap_ssa_name): Do not unshare the + result from the decl_map. + +2023-01-18 Murray Steele <murray.steele@arm.com> + + PR target/108442 + * config/arm/arm_mve.h (__arm_vst1q_p_u8): Use prefixed intrinsic + function. + (__arm_vst1q_p_s8): Likewise. + (__arm_vld1q_z_u8): Likewise. + (__arm_vld1q_z_s8): Likewise. + (__arm_vst1q_p_u16): Likewise. + (__arm_vst1q_p_s16): Likewise. + (__arm_vld1q_z_u16): Likewise. + (__arm_vld1q_z_s16): Likewise. + (__arm_vst1q_p_u32): Likewise. + (__arm_vst1q_p_s32): Likewise. + (__arm_vld1q_z_u32): Likewise. + (__arm_vld1q_z_s32): Likewise. + (__arm_vld1q_z_f16): Likewise. + (__arm_vst1q_p_f16): Likewise. + (__arm_vld1q_z_f32): Likewise. + (__arm_vst1q_p_f32): Likewise. + +2023-01-18 Takayuki 'January June' Suwa <jjsuwa_sys3175@yahoo.co.jp> + + * config/xtensa/xtensa.md (xorsi3_internal): + Rename from the original of "xorsi3". + (xorsi3): New expansion pattern that emits addition rather than + bitwise-XOR when the second source is a constant of -2147483648 + if TARGET_DENSITY. + +2023-01-18 Kewen Lin <linkw@linux.ibm.com> + Andrew Pinski <apinski@marvell.com> + + PR target/108396 + * config/rs6000/rs6000-overload.def (VEC_VSUBCUQ): Fix typo + vec_vsubcuqP with vec_vsubcuq. + +2023-01-18 Kewen Lin <linkw@linux.ibm.com> + + PR target/108348 + * config/rs6000/rs6000.cc (rs6000_opaque_type_invalid_use_p): Add the + support for invalid uses of MMA opaque type in function arguments. + +2023-01-18 liuhongt <hongtao.liu@intel.com> + + PR target/55522 + * config/i386/cygwin.h (ENDFILE_SPEC): Link crtfastmath.o + whenever -mdaz-ftz is specified. Don't link crtfastmath.o when + -share or -mno-daz-ftz is specified. + * config/i386/darwin.h (ENDFILE_SPEC): Ditto. + * config/i386/mingw32.h (ENDFILE_SPEC): Ditto. + 2023-01-17 Jose E. Marchesi <jose.marchesi@oracle.com> * config/bpf/bpf.cc (bpf_option_override): Disable diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index 5943f2b395df..847dee113d40 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20230118 +20230119 diff --git a/gcc/c-family/ChangeLog b/gcc/c-family/ChangeLog index 2e8804ab305c..26587585b04e 100644 --- a/gcc/c-family/ChangeLog +++ b/gcc/c-family/ChangeLog @@ -1,3 +1,8 @@ +2023-01-18 Marek Polacek <polacek@redhat.com> + + PR c/108424 + * c-common.cc (check_case_value): Check INTEGRAL_TYPE_P. + 2023-01-14 Jakub Jelinek <jakub@redhat.com> PR c++/108365 diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 0cb635bc2d89..5723c8c885ac 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,39 @@ +2023-01-18 Marek Polacek <polacek@redhat.com> + + PR c/108424 + * gcc.dg/c2x-nullptr-6.c: New test. + +2023-01-18 David Malcolm <dmalcolm@redhat.com> + + * gcc.dg/analyzer/SARD-tc117-basic-00001-min.c: New test, adapted + from https://samate.nist.gov/SARD/test-suites/81. + * gcc.dg/analyzer/SARD-tc1909-stack_overflow_loop.c: Likewise. + * gcc.dg/analyzer/SARD-tc249-basic-00034-min.c: Likewise. + * gcc.dg/analyzer/SARD-tc293-basic-00045-min.c: Likewise. + * gcc.dg/analyzer/SARD-tc841-basic-00182-min.c: Likewise. + +2023-01-18 Richard Biener <rguenther@suse.de> + + PR lto/108445 + * gcc.dg/lto/pr108445_0.c: New testcase. + * gcc.dg/lto/pr108445_1.c: Likewise. + +2023-01-18 Murray Steele <murray.steele@arm.com> + + * gcc.target/arm/mve/general/preserve_user_namespace_1.c: New test. + +2023-01-18 Kewen Lin <linkw@linux.ibm.com> + Andrew Pinski <apinski@marvell.com> + + PR target/108396 + * gcc.target/powerpc/pr108396.c: New test. + +2023-01-18 Kewen Lin <linkw@linux.ibm.com> + + PR target/108348 + * gcc.target/powerpc/pr108348-1.c: New test. + * gcc.target/powerpc/pr108348-2.c: New test. + 2023-01-17 Harald Anlauf <anlauf@gmx.de> PR fortran/108421 diff --git a/libgcc/ChangeLog b/libgcc/ChangeLog index 5ae6d309bf59..bd276ac17a52 100644 --- a/libgcc/ChangeLog +++ b/libgcc/ChangeLog @@ -1,3 +1,14 @@ +2023-01-18 Wilco Dijkstra <wilco.dijkstra@arm.com> + + PR target/107678 + * unwind-dw2.h (REG_UNSAVED_ARCHEXT): Add new enum. + * unwind-dw2.c (uw_update_context_1): Add REG_UNSAVED_ARCHEXT case. + * unwind-dw2-execute_cfa.h: Use REG_UNSAVED_ARCHEXT/REG_UNSAVED to + encode the return address signing state. + * config/aarch64/aarch64-unwind.h (aarch64_demangle_return_addr) + Check current return address signing state. + (aarch64_frob_update_contex): Remove. + 2023-01-13 John David Anglin <danglin@gcc.gnu.org> * config.host (hppa*64*-*-linux*): Adjust tmake_file to use diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog index 02b7a20537e4..e3997ebed6d2 100644 --- a/libgfortran/ChangeLog +++ b/libgfortran/ChangeLog @@ -1,3 +1,8 @@ +2023-01-18 Tobias Burnus <tobias@codesourcery.com> + + * intrinsics/execute_command_line.c (execute_command_line): On + Windows, regard system()'s return value of 9009 as EXEC_INVALIDCOMMAND. + 2023-01-07 LIU Hao <lh_mouse@126.com> PR middle-end/108300 diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index e311d7c94041..8b4e65206f7a 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,33 @@ +2023-01-18 Jonathan Wakely <jwakely@redhat.com> + + * include/bits/fs_path.h (u8path): Add deprecated attribute. + * testsuite/27_io/filesystem/path/construct/90281.cc: Add + -Wno-deprecated-declarations for C++20 and later. + * testsuite/27_io/filesystem/path/factory/u8path-char8_t.cc: + Likewise. + * testsuite/27_io/filesystem/path/factory/u8path.cc: Likewise. + * testsuite/27_io/filesystem/path/native/string.cc: Likewise. + * testsuite/27_io/filesystem/path/factory/u8path-depr.cc: New test. + +2023-01-18 Jonathan Wakely <jwakely@redhat.com> + + * include/bits/random.h (random_device) [!_GLIBCXX_USE_DEV_RANDOM]: + Always call _M_fini and _M_getentropy. + +2023-01-18 Gerald Pfeifer <gerald@pfeifer.com> + + * doc/xml/manual/policy_data_structures_biblio.xml: Adjust links + to www.open-std.org to use https. + (COM: Component Model Object Technologies): Rename from... + (The Component Object Model): ...to. + * doc/html/manual/policy_data_structures.html: Regenerate. + +2023-01-18 Dimitrij Mijoski <dmjpp@hotmail.com> + + * testsuite/22_locale/codecvt/codecvt_unicode.cc: Simplify. + * testsuite/22_locale/codecvt/codecvt_unicode.h: Simplify. + * testsuite/22_locale/codecvt/codecvt_unicode_wchar_t.cc: Simplify. + 2023-01-17 Jonathan Wakely <jwakely@redhat.com> * acinclude.m4 (GLIBCXX_ZONEINFO_DIR): Check $target_os instead -- GitLab