aboutsummaryrefslogtreecommitdiff
path: root/gcc
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 /gcc
parent153ce7a78edbe339fa0b1cd314dea0554f59faf0 (diff)
downloadgcc-bf074ee40ad835ec5c010d22b7c51a159509d34e.zip
gcc-bf074ee40ad835ec5c010d22b7c51a159509d34e.tar.gz
gcc-bf074ee40ad835ec5c010d22b7c51a159509d34e.tar.bz2
Daily bump.
Diffstat (limited to 'gcc')
-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
5 files changed, 147 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