aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGCC Administrator <gccadmin@gcc.gnu.org>2024-02-13 00:17:51 +0000
committerGCC Administrator <gccadmin@gcc.gnu.org>2024-02-13 00:17:51 +0000
commitbf074ee40ad835ec5c010d22b7c51a159509d34e (patch)
tree7efa637088019a3f18190c7eb454b12dacbb0bea
parent153ce7a78edbe339fa0b1cd314dea0554f59faf0 (diff)
downloadgcc-bf074ee40ad835ec5c010d22b7c51a159509d34e.zip
gcc-bf074ee40ad835ec5c010d22b7c51a159509d34e.tar.gz
gcc-bf074ee40ad835ec5c010d22b7c51a159509d34e.tar.bz2
Daily bump.
-rw-r--r--gcc/ChangeLog65
-rw-r--r--gcc/DATESTAMP2
-rw-r--r--gcc/cp/ChangeLog6
-rw-r--r--gcc/d/ChangeLog23
-rw-r--r--gcc/testsuite/ChangeLog52
-rw-r--r--libgcc/ChangeLog10
-rw-r--r--libgfortran/ChangeLog5
-rw-r--r--libgm2/ChangeLog13
-rw-r--r--libgomp/ChangeLog8
-rw-r--r--libiberty/ChangeLog6
-rw-r--r--libphobos/ChangeLog11
-rw-r--r--libstdc++-v3/ChangeLog9
12 files changed, 209 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 253508c..f9bee19 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,68 @@
+2024-02-12 Jakub Jelinek <jakub@redhat.com>
+
+ PR tree-optimization/113849
+ * gimple-lower-bitint.cc (bitint_large_huge::handle_cast): Don't use
+ fast path for widening casts where !m_upwards_2limb and lhs_type
+ has precision which is a multiple of limb_prec.
+
+2024-02-12 Jakub Jelinek <jakub@redhat.com>
+
+ PR c++/113674
+ * attribs.cc (extract_attribute_substring): Remove.
+ (lookup_scoped_attribute_spec): Don't call it.
+
+2024-02-12 Jakub Jelinek <jakub@redhat.com>
+
+ * gengtype.cc (adjust_field_rtx_def): Use HOST_SIZE_T_PRINT_UNSIGNED
+ and cast to fmt_size_t instead of %lu and cast to unsigned long.
+
+2024-02-12 Christophe Lyon <christophe.lyon@linaro.org>
+
+ * Makefile.in: Add no-info dependency.
+ * configure.ac: Set BUILD_INFO=no-info if makeinfo is not
+ available.
+ * configure: Regenerate.
+
+2024-02-12 Iain Sandoe <iain@sandoe.co.uk>
+
+ PR target/113855
+ * config/i386/darwin.h (DARWIN_HEAP_T_LIB): Moved to be
+ available to all sub-targets.
+ * config/i386/darwin32-biarch.h (DARWIN_HEAP_T_LIB): Delete.
+ * config/i386/darwin64-biarch.h (DARWIN_HEAP_T_LIB): Delete.
+
+2024-02-12 Richard Biener <rguenther@suse.de>
+
+ PR tree-optimization/113831
+ PR tree-optimization/108355
+ * tree-ssa-sccvn.cc (copy_reference_ops_from_ref): When
+ we see variable array indices and get_ref_base_and_extent
+ can resolve those to constants fix up the ops to constants
+ as well.
+ (ao_ref_init_from_vn_reference): Use 'off' member for
+ ARRAY_REF and ARRAY_RANGE_REF instead of recomputing it.
+ (valueize_refs_1): Also fixup 'off' of ARRAY_RANGE_REF.
+
+2024-02-12 Pan Li <pan2.li@intel.com>
+
+ * config/riscv/riscv-vector-builtins.cc (resolve_overloaded_builtin):
+ Replace args to arguments for misspelled term.
+
+2024-02-12 Georg-Johann Lay <avr@gjlay.de>
+
+ PR target/112944
+ * config/avr/gen-avr-mmcu-specs.cc (print_mcu) [have_flmap]:
+ <*link_rodata_in_ram>: Spec undefs symbol __do_flmap_init
+ when not linked with -mrodata-in-ram.
+
+2024-02-12 Richard Biener <rguenther@suse.de>
+
+ PR tree-optimization/113863
+ * tree-vect-data-refs.cc (vect_analyze_early_break_dependences):
+ Record crossed virtual PHIs.
+ * tree-vect-loop.cc (move_early_exit_stmts): Elide crossed
+ virtual PHIs.
+
2024-02-10 Marek Polacek <polacek@redhat.com>
DR 2237
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index 21a1f23..04623e1 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20240212
+20240213
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index b2ec921..2aa478d 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,9 @@
+2024-02-12 Marek Polacek <polacek@redhat.com>
+
+ PR c++/113545
+ * constexpr.cc (cxx_eval_switch_expr): If the condition doesn't reduce
+ to an INTEGER_CST, consider it non-constant.
+
2024-02-10 Marek Polacek <polacek@redhat.com>
DR 2237
diff --git a/gcc/d/ChangeLog b/gcc/d/ChangeLog
index 45dd031..76c07400 100644
--- a/gcc/d/ChangeLog
+++ b/gcc/d/ChangeLog
@@ -1,3 +1,26 @@
+2024-02-12 Iain Buclaw <ibuclaw@gdcproject.org>
+
+ PR d/113125
+ * types.cc (TypeVisitor::visit (TypeStruct *)): Generate TYPE_DECL and
+ apply UDAs to opaque struct declarations.
+
+2024-02-12 Iain Buclaw <ibuclaw@gdcproject.org>
+
+ PR d/113772
+ * dmd/MERGE: Merge upstream dmd 11240a9663.
+ * d-builtins.cc (build_frontend_type): Update for new front-end
+ interface.
+ * types.cc (same_type_p): Likewise.
+
+2024-02-12 Iain Buclaw <ibuclaw@gdcproject.org>
+
+ PR d/113758
+ * d-codegen.cc (d_build_call): Force a TARGET_EXPR when callee
+ destorys its arguments.
+ * decl.cc (DeclVisitor::visit (VarDeclaration *)): Set
+ SET_DECL_VALUE_EXPR on the temporary variable to make it a placeholder
+ for the TARGET_EXPR_SLOT.
+
2024-02-04 Iain Buclaw <ibuclaw@gdcproject.org>
* dmd/MERGE: Merge upstream dmd a6f1083699.
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 337b71c..f62cd77 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,55 @@
+2024-02-12 Jerry DeLisle <jvdelisle@gcc.gnu.org>
+
+ * gfortran.dg/pr109358.f90: New test.
+
+2024-02-12 Marek Polacek <polacek@redhat.com>
+
+ PR c++/113545
+ * g++.dg/cpp1y/constexpr-reinterpret3.C: Remove dg-ice.
+
+2024-02-12 Jakub Jelinek <jakub@redhat.com>
+
+ PR tree-optimization/113849
+ * gcc.dg/torture/bitint-58.c: New test.
+
+2024-02-12 Jakub Jelinek <jakub@redhat.com>
+
+ PR c++/113674
+ * c-c++-common/Wattributes-3.c: New test.
+
+2024-02-12 Jakub Jelinek <jakub@redhat.com>
+
+ * gcc.dg/pr113693.c: Guard _BitInt(837) use with
+ __BITINT_MAXWIDTH__ >= 837. Use dg-prune-output instead of
+ dg-message for dbgcnt message.
+
+2024-02-12 Iain Buclaw <ibuclaw@gdcproject.org>
+
+ PR d/113125
+ * gdc.dg/imports/pr113125.d: New test.
+ * gdc.dg/pr113125.d: New test.
+
+2024-02-12 Iain Buclaw <ibuclaw@gdcproject.org>
+
+ PR d/113758
+ * gdc.dg/torture/pr113758.d: New test.
+
+2024-02-12 Richard Biener <rguenther@suse.de>
+
+ PR tree-optimization/113831
+ PR tree-optimization/108355
+ * gcc.dg/torture/pr113831.c: New testcase.
+ * gcc.dg/tree-ssa/ssa-fre-104.c: Likewise.
+
+2024-02-12 Pan Li <pan2.li@intel.com>
+
+ * gcc.target/riscv/rvv/base/pr113766-1.c: Adjust the test cases.
+
+2024-02-12 Richard Biener <rguenther@suse.de>
+
+ PR tree-optimization/113863
+ * gcc.dg/vect/pr113863.c: New testcase.
+
2024-02-11 John David Anglin <danglin@gcc.gnu.org>
* gcc.c-torture/execute/ieee/cdivchkf.c: Use ilogb and
diff --git a/libgcc/ChangeLog b/libgcc/ChangeLog
index 1839b68..24acc6a 100644
--- a/libgcc/ChangeLog
+++ b/libgcc/ChangeLog
@@ -1,3 +1,13 @@
+2024-02-12 Iain Sandoe <iain@sandoe.co.uk>
+
+ PR target/113855
+ * config.host: Add trampoline support to x?86-linux.
+ * config/i386/heap-trampoline.c (trampoline_insns): Provide
+ a variant for IA32.
+ (union ix86_trampoline): Likewise.
+ (__gcc_nested_func_ptr_created): Implement a basic trampoline
+ for IA32.
+
2024-02-10 Jakub Jelinek <jakub@redhat.com>
* soft-fp/floatbitintdd.c (__bid_floatbitintdd): Or in all remainder
diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog
index c673cd8..25a43b2 100644
--- a/libgfortran/ChangeLog
+++ b/libgfortran/ChangeLog
@@ -1,3 +1,8 @@
+2024-02-12 Jerry DeLisle <jvdelisle@gcc.gnu.org>
+
+ * io/transfer.c (formatted_transfer_scalar_write): Adjust
+ bytes_used and pos variable for stream access.
+
2024-02-03 Jerry DeLisle <jvdelisle@gcc.gnu.org>
PR libfortran/111022
diff --git a/libgm2/ChangeLog b/libgm2/ChangeLog
index 9d9014d..cc4bb37 100644
--- a/libgm2/ChangeLog
+++ b/libgm2/ChangeLog
@@ -1,3 +1,16 @@
+2024-02-12 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
+
+ PR modula2/113888
+ * configure.ac (GM2_CHECK_LIB): Rename gettimeofday guard to
+ HAVE_GETTIMEOFDAY.
+ (GM_CHECK_LIB): Check for settimeofday.
+ (GM2_CHECK_LIB): Check for exp10, exp10f, exp10l in libm.
+ (AC_CHECK_DECLS): Check for getenv.
+ * configure, config.h.in: Regenerate.
+ * libm2pim/dtoa.cc: Rename <strings.h>, <string.h> guards to
+ HAVE_STRINGS_H, HAVE_STRING_H.
+ * libm2pim/ldtoa.cc: Likewise.
+
2024-01-18 Gaius Mulley <gaiusmod2@gmail.com>
PR modula2/111956
diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog
index 4ba3405..fde51d9 100644
--- a/libgomp/ChangeLog
+++ b/libgomp/ChangeLog
@@ -1,3 +1,11 @@
+2024-02-12 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
+
+ PR testsuite/113448
+ * testsuite/libgomp.c/alloc-pinned-1.c [!__linux__] (CHECK_SIZE):
+ Call abort.
+ * testsuite/libgomp.c/alloc-pinned-2.c [!__linux__] (CHECK_SIZE):
+ Likewise.
+
2024-02-11 John David Anglin <danglin@gcc.gnu.org>
PR libgomp/113843
diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog
index 37bde4d..1c5afc5 100644
--- a/libiberty/ChangeLog
+++ b/libiberty/ChangeLog
@@ -1,3 +1,9 @@
+2024-02-12 Jakub Jelinek <jakub@redhat.com>
+
+ * vprintf-support.c (libiberty_vprintf_buffer_size): Handle
+ properly l, ll, z, t or on _WIN32 I64 modifiers for diouxX
+ and L modifier for fFgGeE.
+
2024-01-13 Jakub Jelinek <jakub@redhat.com>
* cp-demangle.c (FNQUAL_COMPONENT_CASE): Add case for
diff --git a/libphobos/ChangeLog b/libphobos/ChangeLog
index 2b36b5b..c290b48 100644
--- a/libphobos/ChangeLog
+++ b/libphobos/ChangeLog
@@ -1,3 +1,14 @@
+2024-02-12 Iain Buclaw <ibuclaw@gdcproject.org>
+
+ PR d/113667
+ * configure: Regenerate.
+ * configure.ac (libtool_VERSION): Update to 5:0:0.
+
+2024-02-12 Iain Buclaw <ibuclaw@gdcproject.org>
+
+ PR d/113772
+ * libdruntime/MERGE: Merge upstream druntime 11240a9663.
+
2024-02-04 Iain Buclaw <ibuclaw@gdcproject.org>
* src/MERGE: Merge upstream phobos 37796e783.
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 7b65aba..fc8a97b 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,12 @@
+2024-02-12 Paul Keir <paul.keir@uws.ac.uk>
+
+ PR libstdc++/113294
+ * include/bits/basic_string.h (basic_string::operator=): Use
+ _M_use_local_data() instead of _M_local_buf on the moved-from
+ string.
+ * testsuite/21_strings/basic_string/modifiers/constexpr.cc
+ (test_move): New test.
+
2024-02-09 Ken Matsui <kmatsui@gcc.gnu.org>
* include/bits/c++config (_GLIBCXX_HAVE_BUILTIN_IS_SAME):