public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r13-6536] Daily bump.
@ 2023-03-08 0:17 GCC Administrator
0 siblings, 0 replies; only message in thread
From: GCC Administrator @ 2023-03-08 0:17 UTC (permalink / raw)
To: gcc-cvs, libstdc++-cvs
https://gcc.gnu.org/g:af320a16dd6c01f89c841864a652745c098a764a
commit r13-6536-gaf320a16dd6c01f89c841864a652745c098a764a
Author: GCC Administrator <gccadmin@gcc.gnu.org>
Date: Wed Mar 8 00:17:16 2023 +0000
Daily bump.
Diff:
---
gcc/ChangeLog | 27 +++++++++++
gcc/DATESTAMP | 2 +-
gcc/cp/ChangeLog | 34 ++++++++++++++
gcc/testsuite/ChangeLog | 117 ++++++++++++++++++++++++++++++++++++++++++++++++
libstdc++-v3/ChangeLog | 20 +++++++++
5 files changed, 199 insertions(+), 1 deletion(-)
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index e33fbd44401..9dc9d12d620 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,30 @@
+2023-03-07 Jonathan Grant <jg@jguk.org>
+
+ PR sanitizer/81649
+ * doc/invoke.texi (Instrumentation Options): Clarify
+ LeakSanitizer behavior.
+
+2023-03-07 Benson Muite <benson_muite@emailplus.org>
+
+ * doc/install.texi (Prerequisites): Add link to gmplib.org.
+
+2023-03-07 Pan Li <pan2.li@intel.com>
+ Ju-Zhe Zhong <juzhe.zhong@rivai.ai>
+
+ PR target/108185
+ PR target/108654
+ * config/riscv/riscv-modes.def (ADJUST_PRECISION): Adjust VNx*BI
+ modes.
+ * config/riscv/riscv.cc (riscv_v_adjust_precision): New.
+ * config/riscv/riscv.h (riscv_v_adjust_precision): New.
+ * genmodes.cc (adj_precision): New.
+ (ADJUST_PRECISION): New.
+ (emit_mode_adjustments): Handle ADJUST_PRECISION.
+
+2023-03-07 Hans-Peter Nilsson <hp@axis.com>
+
+ * doc/sourcebuild.texi: Document check_effective_target_tail_call.
+
2023-03-06 Paul-Antoine Arras <pa@codesourcery.com>
* config/gcn/gcn-valu.md (<expander><mode>3_exec): Add patterns for
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index c01bc02318c..53389297a17 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20230307
+20230308
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index b8e5b0c6d93..6e2dfdbe6d7 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,37 @@
+2023-03-07 Jason Merrill <jason@redhat.com>
+
+ PR c++/108526
+ PR c++/106651
+ * pt.cc (tsubst_function_decl): Don't replace the closure
+ parameter if DECL_STATIC_FUNCTION_P.
+
+2023-03-07 Marek Polacek <polacek@redhat.com>
+
+ PR c++/107532
+ * call.cc (reference_like_class_p): New.
+ (do_warn_dangling_reference): Add new bool parameter. See through
+ reference_like_class_p.
+
+2023-03-07 Jakub Jelinek <jakub@redhat.com>
+
+ PR c++/109042
+ * rtti.cc (emit_support_tinfo_1): Don't assert that last
+ unemitted_tinfo_decls element is tinfo, instead pop from it only in
+ that case.
+ * decl2.cc (c_parse_final_cleanups): Don't call emit_tinfo_decl
+ for unemitted_tinfO_decls which have already non-NULL DECL_INITIAL.
+
+2023-03-07 Marek Polacek <polacek@redhat.com>
+
+ PR c++/109030
+ * constexpr.cc (cxx_eval_call_expression): Relax assert.
+
+2023-03-07 Marek Polacek <polacek@redhat.com>
+
+ PR c++/107939
+ * constexpr.cc (potential_constant_expression_1) <case CALL_EXPR>: Pass
+ 'any' when recursing on a VAR_DECL and not a pointer to function.
+
2023-03-04 Jakub Jelinek <jakub@redhat.com>
PR c++/108702
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 08d5c0ee1e6..48228e2bf7c 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,120 @@
+2023-03-07 Jason Merrill <jason@redhat.com>
+
+ PR c++/108526
+ PR c++/106651
+ * g++.dg/cpp23/static-operator-call5.C: Pass -g.
+
+2023-03-07 Marek Polacek <polacek@redhat.com>
+
+ PR c++/107532
+ * g++.dg/warn/Wdangling-reference8.C: New test.
+ * g++.dg/warn/Wdangling-reference9.C: New test.
+
+2023-03-07 Robin Dapp <rdapp@linux.ibm.com>
+
+ * gcc.dg/vect/slp-3.c: Add '{ ... }'.
+
+2023-03-07 Jakub Jelinek <jakub@redhat.com>
+
+ PR c++/109042
+ * g++.dg/rtti/pr109042.C: New test.
+
+2023-03-07 Marek Polacek <polacek@redhat.com>
+
+ PR c++/109030
+ * g++.dg/cpp0x/noexcept77.C: New test.
+
+2023-03-07 Marek Polacek <polacek@redhat.com>
+
+ PR c++/107939
+ * g++.dg/cpp1y/var-templ74.C: Remove dg-error.
+ * g++.dg/cpp1y/var-templ77.C: New test.
+
+2023-03-07 Pan Li <pan2.li@intel.com>
+ Ju-Zhe Zhong <juzhe.zhong@rivai.ai>
+
+ PR target/108185
+ PR target/108654
+ * gcc.target/riscv/rvv/base/pr108185-1.c: New test.
+ * gcc.target/riscv/rvv/base/pr108185-2.c: New test.
+ * gcc.target/riscv/rvv/base/pr108185-3.c: New test.
+ * gcc.target/riscv/rvv/base/pr108185-4.c: New test.
+ * gcc.target/riscv/rvv/base/pr108185-5.c: New test.
+ * gcc.target/riscv/rvv/base/pr108185-6.c: New test.
+ * gcc.target/riscv/rvv/base/pr108185-7.c: New test.
+ * gcc.target/riscv/rvv/base/pr108185-8.c: New test.
+
+2023-03-07 Xi Ruoyao <xry111@xry111.site>
+
+ * gcc.target/aarch64/shrink_wrap_1.c (dg-options): Add
+ -fno-stack-protector.
+ * gcc.target/aarch64/stack-check-cfa-1.c (dg-options): Add
+ -fno-stack-protector.
+ * gcc.target/aarch64/stack-check-cfa-2.c (dg-options): Add
+ -fno-stack-protector.
+ * gcc.target/aarch64/test_frame_17.c (dg-options): Add
+ -fno-stack-protector.
+
+2023-03-07 Xi Ruoyao <xry111@xry111.site>
+
+ * gcc.target/aarch64/pr104005.c (dg-options): Add
+ -fno-stack-protector.
+
+2023-03-07 Xi Ruoyao <xry111@xry111.site>
+
+ * gcc.target/aarch64/auto-init-7.c (dg-options): Add
+ -fno-stack-protector.
+
+2023-03-07 Xi Ruoyao <xry111@xry111.site>
+
+ * gcc.target/aarch64/pr103147-10.c (dg-options): Add
+ -fno-stack-protector.
+ * g++.target/aarch64/pr103147-10.C: Likewise.
+
+2023-03-07 Xi Ruoyao <xry111@xry111.site>
+
+ * gcc.target/aarch64/sve/pcs/aarch64-sve-pcs.exp (sve_flags):
+ Add -fno-stack-protector.
+
+2023-03-07 Xi Ruoyao <xry111@xry111.site>
+
+ PR testsuite/70150
+ * gcc.target/aarch64/fuse_adrp_add_1.c (dg-options): Add
+ -fno-pie.
+
+2023-03-07 Xi Ruoyao <xry111@xry111.site>
+
+ PR testsuite/70150
+ * gcc.dg/tls/pr78796.c (dg-additional-options): Add -fno-pie
+ -no-pie for aarch64-*-*.
+ * gcc.target/aarch64/pr63304_1.c (dg-options): Add -fno-pie.
+ * gcc.target/aarch64/pr70120-2.c (dg-options): Add -fno-pie.
+ * gcc.target/aarch64/pr78733.c (dg-options): Add -fno-pie.
+ * gcc.target/aarch64/pr79041-2.c (dg-options): Add -fno-pie.
+ * gcc.target/aarch64/pr94530.c (dg-options): Add -fno-pie.
+ * gcc.target/aarch64/pr94577.c (dg-options): Add -fno-pie.
+ * gcc.target/aarch64/reload-valid-spoff.c (dg-options): Add
+ -fno-pie.
+
+2023-03-07 Xi Ruoyao <xry111@xry111.site>
+
+ PR testsuite/70150
+ * gcc.target/aarch64/aapcs64/aapcs64.exp (additional_flags):
+ Add -fno-pie -no-pie.
+
+2023-03-07 Hans-Peter Nilsson <hp@axis.com>
+
+ * lib/target-supports.exp (check_compile): Support scanning tree-dumps.
+
+2023-03-07 Hans-Peter Nilsson <hp@axis.com>
+
+ * gcc.dg/plugin/must-tail-call-1.c, gcc.dg/plugin/must-tail-call-2.c:
+ Gate on effective target tail_call.
+
+2023-03-07 Hans-Peter Nilsson <hp@axis.com>
+
+ * lib/target-supports.exp (check_effective_target_tail_call): New.
+
2023-03-07 Hans-Peter Nilsson <hp@axis.com>
* gcc.dg/analyzer/allocation-size-multiline-3.c: Handle
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 229fbbe97d7..d082dae8226 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,23 @@
+2023-03-07 Jakub Jelinek <jakub@redhat.com>
+
+ * config/abi/post/x86_64-linux-gnu/baseline_symbols.txt: Update.
+ * config/abi/post/x86_64-linux-gnu/32/baseline_symbols.txt: Update.
+ * config/abi/post/i486-linux-gnu/baseline_symbols.txt: Update.
+ * config/abi/post/aarch64-linux-gnu/baseline_symbols.txt: Update.
+ * config/abi/post/s390x-linux-gnu/baseline_symbols.txt: Update.
+
+2023-03-07 Jonathan Wakely <jwakely@redhat.com>
+
+ PR libstdc++/108882
+ * config/abi/pre/gnu.ver (GLIBCXX_3.4.31): Adjust patterns to
+ not match symbols in namespace std::__gnu_cxx11_ieee128.
+ * config/os/gnu-linux/ldbl-ieee128-extra.ver: Add patterns for
+ std::__gnu_cxx11_ieee128::money_{get,put}.
+
+2023-03-07 Jonathan Wakely <jwakely@redhat.com>
+
+ * libsupc++/eh_personality.cc: Fix spelling in comment.
+
2023-03-03 Alexandre Oliva <oliva@adacore.com>
* testsuite/30_threads/async/async.cc (test04): Initialize
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2023-03-08 0:17 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-03-08 0:17 [gcc r13-6536] 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).