aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGCC Administrator <gccadmin@gcc.gnu.org>2023-10-16 00:17:13 +0000
committerGCC Administrator <gccadmin@gcc.gnu.org>2023-10-16 00:17:13 +0000
commitd5cfabc677b08f38ea5d5f85deeda746b4fabb88 (patch)
treea0911822f973c6d90d8c8b2b7ca2696a6b537a05
parent643a5223f1a1860a88c215d715f079d7f846843c (diff)
downloadgcc-d5cfabc677b08f38ea5d5f85deeda746b4fabb88.zip
gcc-d5cfabc677b08f38ea5d5f85deeda746b4fabb88.tar.gz
gcc-d5cfabc677b08f38ea5d5f85deeda746b4fabb88.tar.bz2
Daily bump.
-rw-r--r--ChangeLog5
-rw-r--r--gcc/ChangeLog38
-rw-r--r--gcc/DATESTAMP2
-rw-r--r--gcc/c-family/ChangeLog7
-rw-r--r--gcc/d/ChangeLog16
-rw-r--r--gcc/fortran/ChangeLog6
-rw-r--r--gcc/m2/ChangeLog4
-rw-r--r--gcc/testsuite/ChangeLog4
-rw-r--r--libgomp/ChangeLog17
-rw-r--r--libphobos/ChangeLog12
10 files changed, 110 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index c7a921e..af92edb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2023-10-15 Mike Frysinger <vapier@gentoo.org>
+
+ * Makefile.def: Add distclean-sim dependency on distclean-gnulib.
+ * Makefile.in: Regenerate.
+
2023-10-11 Filip Kastl <fkastl@suse.cz>
* MAINTAINERS: Fix name order.
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 5a83973..2a59490 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,41 @@
+2023-10-15 Tobias Burnus <tobias@codesourcery.com>
+
+ * doc/invoke.texi (-fopenacc, -fopenmp, -fopenmp-simd): Use @samp not
+ @code; document more completely the supported Fortran sentinels.
+
+2023-10-15 Roger Sayle <roger@nextmovesoftware.com>
+
+ * optabs.cc (expand_subword_shift): Call simplify_expand_binop
+ instead of expand_binop. Optimize cases (i.e. avoid generating
+ RTL) when CARRIES or INTO_INPUT is zero. Use one_cmpl_optab
+ (i.e. NOT) instead of xor_optab with ~0 to calculate ~OP1.
+
+2023-10-15 Jakub Jelinek <jakub@redhat.com>
+
+ PR tree-optimization/111800
+ * wide-int-print.h (print_dec_buf_size, print_decs_buf_size,
+ print_decu_buf_size, print_hex_buf_size): New inline functions.
+ * wide-int.cc (assert_deceq): Use print_dec_buf_size.
+ (assert_hexeq): Use print_hex_buf_size.
+ * wide-int-print.cc (print_decs): Use print_decs_buf_size.
+ (print_decu): Use print_decu_buf_size.
+ (print_hex): Use print_hex_buf_size.
+ (pp_wide_int_large): Use print_dec_buf_size.
+ * value-range.cc (irange_bitmask::dump): Use print_hex_buf_size.
+ * value-range-pretty-print.cc (vrange_printer::print_irange_bitmasks):
+ Likewise.
+ * tree-ssa-loop-niter.cc (do_warn_aggressive_loop_optimizations): Use
+ print_dec_buf_size. Use TYPE_SIGN macro in print_dec call argument.
+
+2023-10-15 Stefan Schulze Frielinghaus <stefansf@linux.ibm.com>
+
+ * combine.cc (simplify_compare_const): Fix handling of unsigned
+ constants.
+
+2023-10-15 Juzhe-Zhong <juzhe.zhong@rivai.ai>
+
+ * config/riscv/vector-iterators.md: Fix vsingle incorrect attribute for RVVM2x2QI.
+
2023-10-14 Tobias Burnus <tobias@codesourcery.com>
* gimplify.cc (gimplify_bind_expr): Handle Fortran's
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index 16b55e7..2638d56 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20231015
+20231016
diff --git a/gcc/c-family/ChangeLog b/gcc/c-family/ChangeLog
index 871c440..b4b1b90 100644
--- a/gcc/c-family/ChangeLog
+++ b/gcc/c-family/ChangeLog
@@ -1,3 +1,10 @@
+2023-10-15 Jakub Jelinek <jakub@redhat.com>
+
+ PR tree-optimization/111800
+ * c-warn.cc (match_case_to_enum_1): Assert w.get_precision ()
+ is smaller or equal to WIDE_INT_MAX_INL_PRECISION rather than
+ w.get_len () is smaller or equal to WIDE_INT_MAX_INL_ELTS.
+
2023-10-12 Jakub Jelinek <jakub@redhat.com>
PR c/102989
diff --git a/gcc/d/ChangeLog b/gcc/d/ChangeLog
index 2ab2b4b..90749a4 100644
--- a/gcc/d/ChangeLog
+++ b/gcc/d/ChangeLog
@@ -1,3 +1,19 @@
+2023-10-15 Iain Buclaw <ibuclaw@gdcproject.org>
+
+ * dmd/MERGE: Merge upstream dmd f9efc98fd7.
+ * dmd/VERSION: Bump version to v2.105.2.
+ * d-builtins.cc (build_frontend_type): Update for new front-end
+ interface.
+ * d-diagnostic.cc (verrorReport): Don't emit tips when error gagging
+ is turned on.
+ * d-lang.cc (d_handle_option): Remove obsolete parameter.
+ (d_post_options): Likewise.
+ (d_read_ddoc_files): New function.
+ (d_generate_ddoc_file): New function.
+ (d_parse_file): Update for new front-end interface.
+ * expr.cc (ExprVisitor::visit (AssocArrayLiteralExp *)): Check for new
+ front-end lowering of static associative arrays.
+
2023-10-14 Iain Buclaw <ibuclaw@gdcproject.org>
PR d/111537
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog
index c8fa70b..523e44a 100644
--- a/gcc/fortran/ChangeLog
+++ b/gcc/fortran/ChangeLog
@@ -1,3 +1,9 @@
+2023-10-15 Tobias Burnus <tobias@codesourcery.com>
+
+ * scanner.cc (skip_free_comments, skip_fixed_comments): Remove
+ leftover 'OpenACC' from comments about OpenMP's conditional
+ compilation sentinel.
+
2023-10-14 Tobias Burnus <tobias@codesourcery.com>
* gfortran.h (ext_attr_t): Add omp_allocate flag.
diff --git a/gcc/m2/ChangeLog b/gcc/m2/ChangeLog
index dc59819..ee27f8e 100644
--- a/gcc/m2/ChangeLog
+++ b/gcc/m2/ChangeLog
@@ -1,3 +1,7 @@
+2023-10-15 Gaius Mulley <gaiusmod2@gmail.com>
+
+ * Make-lang.in (m2.tags): New rule.
+
2023-10-11 Gaius Mulley <gaiusmod2@gmail.com>
* gm2-compiler/M2GCCDeclare.mod (DeclareSubrange): Check
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 693652a..fff191e 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,7 @@
+2023-10-15 Iain Buclaw <ibuclaw@gdcproject.org>
+
+ * lib/gdc-utils.exp (gdc-convert-args): Handle new compiler options.
+
2023-10-14 Iain Buclaw <ibuclaw@gdcproject.org>
PR d/111537
diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog
index 8180fb7..607786c 100644
--- a/libgomp/ChangeLog
+++ b/libgomp/ChangeLog
@@ -1,3 +1,20 @@
+2023-10-15 Tobias Burnus <tobias@codesourcery.com>
+
+ * libgomp.texi (Enabling OpenMP): Update for C/C++ attributes;
+ improve wording especially for Fortran; mention -fopenmp-simd.
+ (Enabling OpenACC): Minor cleanup; remove conditional compilation
+ sentinel.
+
+2023-10-15 Tobias Burnus <tobias@codesourcery.com>
+
+ * libgomp.texi (ACC_DEVICE_TYPE, ACC_DEVICE_NUM, ACC_PROFLIB):
+ Actually document what the function does.
+ (GCC_ACC_NOTIFY): Remove unused env var.
+
+2023-10-15 Tobias Burnus <tobias@codesourcery.com>
+
+ * libgomp.texi: Replace most future tense by present tense.
+
2023-10-14 Tobias Burnus <tobias@codesourcery.com>
* testsuite/libgomp.fortran/allocate-6.f90: Add missing
diff --git a/libphobos/ChangeLog b/libphobos/ChangeLog
index c455e3e..de5cbfa 100644
--- a/libphobos/ChangeLog
+++ b/libphobos/ChangeLog
@@ -1,3 +1,15 @@
+2023-10-15 Iain Buclaw <ibuclaw@gdcproject.org>
+
+ * libdruntime/MERGE: Merge upstream druntime f9efc98fd7.
+ * libdruntime/Makefile.am (DRUNTIME_DSOURCES): Add
+ core/internal/newaa.d.
+ * libdruntime/Makefile.in: Regenerate.
+ * src/MERGE: Merge upstream phobos a3f22129d.
+ * testsuite/libphobos.hash/test_hash.d: Update test.
+ * testsuite/libphobos.phobos/phobos.exp: Add compiler flags
+ -Wno-deprecated.
+ * testsuite/libphobos.phobos_shared/phobos_shared.exp: Likewise.
+
2023-09-23 Iain Buclaw <ibuclaw@gdcproject.org>
* libdruntime/MERGE: Merge upstream druntime 4574d1728d.