public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r14-4652] Daily bump.
@ 2023-10-16  0:17 GCC Administrator
  0 siblings, 0 replies; only message in thread
From: GCC Administrator @ 2023-10-16  0:17 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:d5cfabc677b08f38ea5d5f85deeda746b4fabb88

commit r14-4652-gd5cfabc677b08f38ea5d5f85deeda746b4fabb88
Author: GCC Administrator <gccadmin@gcc.gnu.org>
Date:   Mon Oct 16 00:17:13 2023 +0000

    Daily bump.

Diff:
---
 ChangeLog               |  5 +++++
 gcc/ChangeLog           | 38 ++++++++++++++++++++++++++++++++++++++
 gcc/DATESTAMP           |  2 +-
 gcc/c-family/ChangeLog  |  7 +++++++
 gcc/d/ChangeLog         | 16 ++++++++++++++++
 gcc/fortran/ChangeLog   |  6 ++++++
 gcc/m2/ChangeLog        |  4 ++++
 gcc/testsuite/ChangeLog |  4 ++++
 libgomp/ChangeLog       | 17 +++++++++++++++++
 libphobos/ChangeLog     | 12 ++++++++++++
 10 files changed, 110 insertions(+), 1 deletion(-)

diff --git a/ChangeLog b/ChangeLog
index c7a921e503b..af92edb4abe 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 5a83973ae6a..2a594904136 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 16b55e796ac..2638d56830a 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20231015
+20231016
diff --git a/gcc/c-family/ChangeLog b/gcc/c-family/ChangeLog
index 871c440a639..b4b1b908c63 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 2ab2b4bd052..90749a40282 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 c8fa70b5e3d..523e44a2d66 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 dc598191d82..ee27f8eff28 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 693652aefcf..fff191ef11c 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 8180fb74c3f..607786cd7ef 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 c455e3ed232..de5cbfafc6e 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.

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2023-10-16  0:17 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-10-16  0:17 [gcc r14-4652] Daily bump GCC Administrator

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).