aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorGCC Administrator <gccadmin@gcc.gnu.org>2023-03-10 00:17:15 +0000
committerGCC Administrator <gccadmin@gcc.gnu.org>2023-03-10 00:17:15 +0000
commitda2b9c6e310e808f73c5dcfb3f46ca70b836e8f5 (patch)
treed3e87096f8c3bdb290289736f952a0abaeffeec1 /gcc
parente0324e2629e25a90c13c68b4eef1e47b091970c3 (diff)
downloadgcc-da2b9c6e310e808f73c5dcfb3f46ca70b836e8f5.zip
gcc-da2b9c6e310e808f73c5dcfb3f46ca70b836e8f5.tar.gz
gcc-da2b9c6e310e808f73c5dcfb3f46ca70b836e8f5.tar.bz2
Daily bump.
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog59
-rw-r--r--gcc/DATESTAMP2
-rw-r--r--gcc/cp/ChangeLog44
-rw-r--r--gcc/testsuite/ChangeLog66
4 files changed, 170 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 9dc9d12..045acf5 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,62 @@
+2023-03-09 Tamar Christina <tamar.christina@arm.com>
+
+ * passes.cc (emergency_dump_function): Finish graph generation.
+
+2023-03-09 Tamar Christina <tamar.christina@arm.com>
+
+ * config/aarch64/aarch64.md (tbranch_<code><mode>3): Restrict to SHORT
+ and bottom bit only.
+
+2023-03-09 Andrew Pinski <apinski@marvell.com>
+
+ PR tree-optimization/108980
+ * gimple-array-bounds.cc (array_bounds_checker::check_array_ref):
+ Reorgnize the call to warning for not strict flexible arrays
+ to be before the check of warned.
+
+2023-03-09 Jason Merrill <jason@redhat.com>
+
+ * doc/extend.texi: Comment out __is_deducible docs.
+
+2023-03-09 Jason Merrill <jason@redhat.com>
+
+ PR c++/105841
+ * doc/extend.texi (Type Traits):: Document __is_deducible.
+
+2023-03-09 Costas Argyris <costas.argyris@gmail.com>
+
+ PR driver/108865
+ * config.host: add object for x86_64-*-mingw*.
+ * config/i386/sym-mingw32.cc: dummy file to attach
+ symbol.
+ * config/i386/utf8-mingw32.rc: windres resource file.
+ * config/i386/winnt-utf8.manifest: XML manifest to
+ enable UTF-8.
+ * config/i386/x-mingw32: reference to x-mingw32-utf8.
+ * config/i386/x-mingw32-utf8: Makefile fragment to
+ embed UTF-8 manifest.
+
+2023-03-09 Vladimir N. Makarov <vmakarov@redhat.com>
+
+ * lra-constraints.cc (process_alt_operands): Use operand modes for
+ clobbered regs instead of the biggest access mode.
+
+2023-03-09 Richard Biener <rguenther@suse.de>
+
+ PR middle-end/108995
+ * fold-const.cc (extract_muldiv_1): Avoid folding
+ (CST * b) / CST2 when sanitizing overflow and we rely on
+ overflow being undefined.
+
+2023-03-09 Jakub Jelinek <jakub@redhat.com>
+ Richard Biener <rguenther@suse.de>
+
+ PR tree-optimization/109008
+ * range-op-float.cc (float_widen_lhs_range): New function.
+ (foperator_plus::op1_range, foperator_minus::op1_range,
+ foperator_minus::op2_range, foperator_mult::op1_range,
+ foperator_div::op1_range, foperator_div::op2_range): Use it.
+
2023-03-07 Jonathan Grant <jg@jguk.org>
PR sanitizer/81649
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index c7a9cb1..cca5b33 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20230309
+20230310
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index 6e2dfdb..adbe792 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,47 @@
+2023-03-09 Jason Merrill <jason@redhat.com>
+
+ PR c++/108773
+ * init.cc (find_allocator_temps_r): New.
+ (combine_allocator_temps): Replace find_allocator_temp.
+ (build_vec_init): Adjust.
+
+2023-03-09 Jason Merrill <jason@redhat.com>
+
+ DR 2664
+ PR c++/102529
+ * pt.cc (alias_ctad_tweaks): Continue after deduction failure.
+
+2023-03-09 Jason Merrill <jason@redhat.com>
+ Michael Spertus <mike@spertus.com>
+
+ PR c++/105841
+ * pt.cc (corresponding_template_parameter_list): Split out...
+ (corresponding_template_parameter): ...from here.
+ (find_template_parameters): Factor out...
+ (find_template_parameter_info::find_in): ...this function.
+ (find_template_parameter_info::find_in_recursive): New.
+ (find_template_parameter_info::found): New.
+ (alias_ctad_tweaks): Only add parms used in the deduced args.
+
+2023-03-09 Jason Merrill <jason@redhat.com>
+
+ * cp-trait.def (IS_DEDUCIBLE): Add space to name.
+
+2023-03-09 Jason Merrill <jason@redhat.com>
+
+ PR c++/105841
+ * cp-trait.def (IS_DEDUCIBLE): New.
+ * cxx-pretty-print.cc (pp_cxx_trait): Handle non-type.
+ * parser.cc (cp_parser_trait): Likewise.
+ * tree.cc (cp_tree_equal): Likewise.
+ * pt.cc (tsubst_copy_and_build): Likewise.
+ (type_targs_deducible_from): New.
+ (alias_ctad_tweaks): Use it.
+ * semantics.cc (trait_expr_value): Handle CPTK_IS_DEDUCIBLE.
+ (finish_trait_expr): Likewise.
+ * constraint.cc (diagnose_trait_expr): Likewise.
+ * cp-tree.h (type_targs_deducible_from): Declare.
+
2023-03-07 Jason Merrill <jason@redhat.com>
PR c++/108526
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 711f5b5..7c4d10d 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,69 @@
+2023-03-09 Jason Merrill <jason@redhat.com>
+
+ PR c++/108773
+ * g++.dg/cpp0x/initlist-array18.C: New test.
+ * g++.dg/cpp0x/initlist-array19.C: New test.
+
+2023-03-09 David Malcolm <dmalcolm@redhat.com>
+
+ PR analyzer/102671
+ PR analyzer/105755
+ PR analyzer/108251
+ PR analyzer/108400
+ * gcc.dg/analyzer/null-deref-pr102671-1.c: New test, reduced
+ from Emacs.
+ * gcc.dg/analyzer/null-deref-pr102671-2.c: Likewise.
+ * gcc.dg/analyzer/null-deref-pr105755.c: Likewise.
+ * gcc.dg/analyzer/null-deref-pr108251-smp_fetch_ssl_fc_has_early-O2.c:
+ New test, reduced from haproxy's src/ssl_sample.c.
+ * gcc.dg/analyzer/null-deref-pr108251-smp_fetch_ssl_fc_has_early.c:
+ Likewise.
+ * gcc.dg/analyzer/null-deref-pr108400-SoftEtherVPN-WebUi.c: New
+ test, reduced from SoftEtherVPN's src/Cedar/WebUI.c.
+
+2023-03-09 Tamar Christina <tamar.christina@arm.com>
+
+ * gcc.target/aarch64/tbz_2.c: New test.
+ * gcc.target/aarch64/tbz_3.c: New test.
+
+2023-03-09 Jason Merrill <jason@redhat.com>
+
+ DR 2664
+ PR c++/102529
+ * g++.dg/DRs/dr2664.C: New test.
+ * g++.dg/cpp2a/class-deduction-alias15.C: New test.
+
+2023-03-09 Jason Merrill <jason@redhat.com>
+ Michael Spertus <mike@spertus.com>
+
+ PR c++/105841
+ * g++.dg/cpp2a/class-deduction-alias14.C: New test.
+
+2023-03-09 Jason Merrill <jason@redhat.com>
+
+ * g++.dg/ext/is_deducible1.C: Guard with
+ __has_builtin (__is_deducible).
+
+2023-03-09 Jason Merrill <jason@redhat.com>
+
+ PR c++/105841
+ * g++.dg/ext/is_deducible1.C: New test.
+
+2023-03-09 Vladimir N. Makarov <vmakarov@redhat.com>
+
+ * gcc.target/aarch64/pr108999.c: New.
+
+2023-03-09 Richard Biener <rguenther@suse.de>
+
+ PR middle-end/108995
+ * gcc.dg/ubsan/pr108995.c: New testcase.
+
+2023-03-09 Jakub Jelinek <jakub@redhat.com>
+ Richard Biener <rguenther@suse.de>
+
+ PR tree-optimization/109008
+ * gcc.c-torture/execute/ieee/pr109008.c: New test.
+
2023-03-08 Kewen Lin <linkw@linux.ibm.com>
* gcc.target/powerpc/ppc-fortran/ppc-fortran.exp: Override