]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Daily bump.
authorGCC Administrator <gccadmin@gcc.gnu.org>
Thu, 19 Jan 2023 00:17:35 +0000 (00:17 +0000)
committerGCC Administrator <gccadmin@gcc.gnu.org>
Thu, 19 Jan 2023 00:17:35 +0000 (00:17 +0000)
gcc/ChangeLog
gcc/DATESTAMP
gcc/c-family/ChangeLog
gcc/testsuite/ChangeLog
libgcc/ChangeLog
libgfortran/ChangeLog
libstdc++-v3/ChangeLog

index a8da61564d1aabf33ff76d517625290c001c92df..ffca6da1def5d9c8afb896811576fbec6cad29e7 100644 (file)
@@ -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
index 5943f2b395df6c930db329cd82ea458cfaf733d1..847dee113d4038b00224c88eaf41839aa2012f13 100644 (file)
@@ -1 +1 @@
-20230118
+20230119
index 2e8804ab305c3410a18aa7ba8e745b5e2d04cd1e..26587585b04e9e824c1952e1549320f07d823d5d 100644 (file)
@@ -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
index 0cb635bc2d8967417cdab6247eaba404d4e68578..5723c8c885ac3c7c581bf5db57d42460ea7bf3cd 100644 (file)
@@ -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
index 5ae6d309bf594185c8a3359418c8bc43f12e2b3a..bd276ac17a52d27e819d17dec0563bcdaafa8bef 100644 (file)
@@ -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
index 02b7a20537e49ff665637521816767a661cbcd4d..e3997ebed6d244f10d907c4bd5407c0df8f6784b 100644 (file)
@@ -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
index e311d7c940417677f9537ddc00c10af15d13d8bf..8b4e65206f7a48813a344be3aeeb2a4b9994f41c 100644 (file)
@@ -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