]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Daily bump.
authorGCC Administrator <gccadmin@gcc.gnu.org>
Wed, 6 Dec 2023 00:20:51 +0000 (00:20 +0000)
committerGCC Administrator <gccadmin@gcc.gnu.org>
Wed, 6 Dec 2023 00:20:51 +0000 (00:20 +0000)
gcc/ChangeLog
gcc/DATESTAMP
gcc/cp/ChangeLog
gcc/testsuite/ChangeLog
libgomp/ChangeLog
libstdc++-v3/ChangeLog

index 496fb0e526c0a4790a8915f5c6d30119a3b676aa..de9f2f7dbea633c7d40e7e985824b0b362280022 100644 (file)
@@ -1,3 +1,74 @@
+2023-12-05  Jakub Jelinek  <jakub@redhat.com>
+
+       Backported from master:
+       2023-12-05  Jakub Jelinek  <jakub@redhat.com>
+
+       PR target/112845
+       * config/i386/i386.md (movabsq $(i32 << shift), r64 peephole2): FAIL
+       if the new immediate is ix86_endbr_immediate_operand.
+
+2023-12-05  Jakub Jelinek  <jakub@redhat.com>
+
+       Backported from master:
+       2023-12-04  Jakub Jelinek  <jakub@redhat.com>
+
+       PR target/112837
+       * config/i386/i386.cc (ix86_elim_entry_set_got): Before checking
+       for UNSPEC_SET_GOT check that SET_SRC is UNSPEC.  Use SET_SRC and
+       SET_DEST macros instead of XEXP, rename vec variable to set.
+
+2023-12-05  Jakub Jelinek  <jakub@redhat.com>
+
+       Backported from master:
+       2023-12-04  Jakub Jelinek  <jakub@redhat.com>
+
+       PR target/112816
+       * config/i386/sse.md (signbit<mode>2): Force operands[1] into a REG.
+
+2023-12-05  Jakub Jelinek  <jakub@redhat.com>
+
+       Backported from master:
+       2023-12-01  Jakub Jelinek  <jakub@redhat.com>
+
+       * doc/extend.texi (__builtin_darn, __builtin_darn_raw,
+       __builtin_ia32_vec_ext_v2di, __builtin_ia32_crc32qi,
+       __builtin_ia32_crc32hi, __builtin_ia32_crc32si,
+       __builtin_ia32_crc32di): Put {}s around return type with spaces in it.
+       (__builtin_rx_mvfachi, __builtin_rx_mvfacmi): Remove superfluous
+       whitespace.
+
+2023-12-05  Jakub Jelinek  <jakub@redhat.com>
+
+       Backported from master:
+       2023-11-25  Jakub Jelinek  <jakub@redhat.com>
+
+       PR target/111408
+       * config/i386/i386.md (*jcc_bt<mode>_mask,
+       *jcc_bt<mode>_mask_1): Add (const_int 0) as expected
+       second operand of bt_comparison_operator.
+
+2023-12-05  Jakub Jelinek  <jakub@redhat.com>
+
+       Backported from master:
+       2023-11-13  Jakub Jelinek  <jakub@redhat.com>
+
+       PR tree-optimization/111967
+       * gimple-range-cache.cc (block_range_cache::set_bb_range): Grow
+       m_ssa_ranges to num_ssa_names rather than num_ssa_names + 1.
+       (block_range_cache::dump): Iterate from 1 rather than 0.  Don't use
+       ssa_name (x) unless m_ssa_ranges[x] is non-NULL.  Iterate to
+       m_ssa_ranges.length () rather than num_ssa_names.
+
+2023-12-05  Jakub Jelinek  <jakub@redhat.com>
+
+       Backported from master:
+       2023-11-09  Jakub Jelinek  <jakub@redhat.com>
+
+       PR c/112339
+       * attribs.cc (attribute_ignored_p): Only return true for
+       attr_namespace_ignored_p if as is NULL.
+       (decl_attributes): Never add ignored attributes.
+
 2023-11-30  Vladimir N. Makarov  <vmakarov@redhat.com>
 
        Backported from master:
index 6f4231ffb41216d8fda089535e6b4ba60e96c4dd..76ff872532c3a56726418e264edfd68e6324507b 100644 (file)
@@ -1 +1 @@
-20231205
+20231206
index e449b542e7586da12463066d0aa886410fc6095c..fbd51af73d4543915c50f16f9491c22872ce34f8 100644 (file)
@@ -1,3 +1,12 @@
+2023-12-05  Jakub Jelinek  <jakub@redhat.com>
+
+       Backported from master:
+       2023-12-04  Jakub Jelinek  <jakub@redhat.com>
+
+       PR c++/112795
+       * parser.cc (cp_parser_pragma_unroll): Use fold_non_dependent_expr
+       instead of maybe_constant_value.
+
 2023-11-24  Patrick Palka  <ppalka@redhat.com>
 
        Backported from master:
index 75503bc86434520533b2c4514e3bf345e79d86be..01b5ee002d5b5888a7d1980e7780d7740e06ba85 100644 (file)
@@ -1,3 +1,59 @@
+2023-12-05  Jakub Jelinek  <jakub@redhat.com>
+
+       Backported from master:
+       2023-12-05  Jakub Jelinek  <jakub@redhat.com>
+
+       PR target/112845
+       * gcc.dg/pr112845.c: New file.
+
+2023-12-05  Jakub Jelinek  <jakub@redhat.com>
+
+       Backported from master:
+       2023-12-04  Jakub Jelinek  <jakub@redhat.com>
+
+       PR target/112837
+       * gcc.dg/pr112837.c: New test.
+
+2023-12-05  Jakub Jelinek  <jakub@redhat.com>
+
+       Backported from master:
+       2023-12-04  Jakub Jelinek  <jakub@redhat.com>
+
+       PR target/112816
+       * gcc.target/i386/sse2-pr112816.c: New test.
+
+2023-12-05  Jakub Jelinek  <jakub@redhat.com>
+
+       Backported from master:
+       2023-12-04  Jakub Jelinek  <jakub@redhat.com>
+
+       PR c++/112795
+       * g++.dg/ext/unroll-5.C: New test.
+
+2023-12-05  Jakub Jelinek  <jakub@redhat.com>
+
+       Backported from master:
+       2023-11-25  Jakub Jelinek  <jakub@redhat.com>
+
+       PR target/111408
+       * gcc.c-torture/execute/pr111408.c: New test.
+
+2023-12-05  Jakub Jelinek  <jakub@redhat.com>
+
+       Backported from master:
+       2023-11-13  Jakub Jelinek  <jakub@redhat.com>
+
+       PR tree-optimization/111967
+       * gcc.dg/tree-ssa/pr111967.c: New test.
+
+2023-12-05  Jakub Jelinek  <jakub@redhat.com>
+
+       Backported from master:
+       2023-11-09  Jakub Jelinek  <jakub@redhat.com>
+
+       PR c/112339
+       * c-c++-common/ubsan/Wno-attributes-1.c: New test.
+
 2023-11-30  Harald Anlauf  <anlauf@gmx.de>
 
        Backported from master:
index f86157edc7ec181c8d522e9b6a77e124647f33f3..15a7377d79e25fea2c7a847ab8dc86077c910b1b 100644 (file)
@@ -1,3 +1,12 @@
+2023-12-05  Jakub Jelinek  <jakub@redhat.com>
+
+       Backported from master:
+       2023-09-19  Jakub Jelinek  <jakub@redhat.com>
+
+       PR libgomp/111413
+       * env.c (initialize_env): Don't dereference environ if it is NULL.
+       Reindent.
+
 2023-08-24  Tobias Burnus  <tobias@codesourcery.com>
 
        Backported from master:
index 0684607fe525531b92c7d88163faf07c27667f61..94093137b249e028429afc4941cf9880e3a5b465 100644 (file)
@@ -1,3 +1,13 @@
+2023-12-05  Jakub Jelinek  <jakub@redhat.com>
+
+       Backported from master:
+       2023-10-13  Jakub Jelinek  <jakub@redhat.com>
+
+       * testsuite/tr1/8_c_compatibility/cstdio/functions.cc (test01):
+       Initialize stream to va_arg(ap, FILE*) rather than 0.
+       * testsuite/tr1/8_c_compatibility/cwchar/functions.cc (test01):
+       Likewise.
+
 2023-11-28  Jonathan Wakely  <jwakely@redhat.com>
 
        Backported from master: