public inbox for libstdc++-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r12-5914] Daily bump.
@ 2021-12-12  0:17 GCC Administrator
  0 siblings, 0 replies; only message in thread
From: GCC Administrator @ 2021-12-12  0:17 UTC (permalink / raw)
  To: gcc-cvs, libstdc++-cvs

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

commit r12-5914-ge8decbe783fd02d5fa96e7ff7a46712657d21501
Author: GCC Administrator <gccadmin@gcc.gnu.org>
Date:   Sun Dec 12 00:16:45 2021 +0000

    Daily bump.

Diff:
---
 gcc/ChangeLog           | 12 ++++++++++++
 gcc/DATESTAMP           |  2 +-
 gcc/fortran/ChangeLog   |  6 ++++++
 gcc/jit/ChangeLog       | 28 ++++++++++++++++++++++++++++
 gcc/testsuite/ChangeLog | 25 +++++++++++++++++++++++++
 libgcc/ChangeLog        | 10 ++++++++++
 libstdc++-v3/ChangeLog  |  6 ++++++
 7 files changed, 88 insertions(+), 1 deletion(-)

diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 5538483f7a9..d3434715dc1 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,15 @@
+2021-12-11  Jan Hubicka  <hubicka@ucw.cz>
+
+	* ipa-profile.c (ipa_profile): Do not update hot bb threshold.
+
+2021-12-11  Jan Hubicka  <hubicka@ucw.cz>
+
+	* ipa-modref.c (get_modref_function_summary): Use ultimate_alias_target.
+	(ignore_edge): Likewise.
+	(compute_parm_map): Likewise.
+	(modref_propagate_in_scc): Likewise.
+	(modref_propagate_flags_in_scc): Likewise.
+
 2021-12-10  Jason Merrill  <jason@redhat.com>
 
 	* symtab.c (symtab_node::equal_address_to): Fix comment typo.
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index bed72424417..c59e542a641 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20211211
+20211212
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog
index c917a4f7a1a..1e70b9d176c 100644
--- a/gcc/fortran/ChangeLog
+++ b/gcc/fortran/ChangeLog
@@ -1,3 +1,9 @@
+2021-12-11  Harald Anlauf  <anlauf@gmx.de>
+
+	PR fortran/103606
+	* resolve.c (resolve_fl_procedure): Do not access CLASS components
+	before class container has been built.
+
 2021-12-10  Harald Anlauf  <anlauf@gmx.de>
 
 	PR fortran/103418
diff --git a/gcc/jit/ChangeLog b/gcc/jit/ChangeLog
index bdbcb18eb83..349b795f947 100644
--- a/gcc/jit/ChangeLog
+++ b/gcc/jit/ChangeLog
@@ -1,3 +1,31 @@
+2021-12-12  Antoni Boucher  <bouanto@zoho.com>
+
+	PR target/95415
+	* docs/topics/compatibility.rst (LIBGCCJIT_ABI_17): New ABI
+	tag.
+	* docs/topics/expressions.rst: Add document for the function
+	gcc_jit_lvalue_set_tls_model.
+	* jit-playback.h: New function (set_tls_model).
+	* jit-recording.c: New function (set_tls_model), new
+	variables (tls_models and tls_model_enum_strings) and support
+	for setting the tls model.
+	* jit-recording.h: New function (set_tls_model) and new
+	field m_tls_model.
+	* libgccjit.c: New function (gcc_jit_lvalue_set_tls_model).
+	* libgccjit.h: New function (gcc_jit_lvalue_set_tls_model)
+	and new enum (gcc_jit_tls_model).
+	* libgccjit.map (LIBGCCJIT_ABI_17): New ABI tag.
+
+2021-12-11  Antoni Boucher  <bouanto@zoho.com>
+
+	PR target/96066
+	PR target/96067
+	* jit-builtins.c: Implement missing types for builtins.
+	* jit-recording.c:: Allow sending a volatile const void * as
+	argument.
+	* jit-recording.h: New functions (is_volatile, is_const) and
+	allow comparing qualified types.
+
 2021-12-10  David Malcolm  <dmalcolm@redhat.com>
 
 	PR jit/103562
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 68db9947660..2da36cfdfb2 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,28 @@
+2021-12-12  Antoni Boucher  <bouanto@zoho.com>
+
+	PR target/95415
+	* jit.dg/all-non-failing-tests.h: Add test-tls.c.
+	* jit.dg/test-tls.c: New test.
+
+2021-12-11  Antoni Boucher  <bouanto@zoho.com>
+
+	PR target/96066
+	PR target/96067
+	* jit.dg/all-non-failing-tests.h: Add test-builtin-types.c.
+	* jit.dg/test-builtin-types.c
+	* jit.dg/test-error-bad-assignment.c
+	* jit.dg/test-fuzzer.c: Add fuzzing for type qualifiers.
+
+2021-12-11  Harald Anlauf  <anlauf@gmx.de>
+
+	PR fortran/103606
+	* gfortran.dg/pr103606.f90: New test.
+
+2021-12-11  Jason Merrill  <jason@redhat.com>
+
+	PR c++/103534
+	* g++.dg/warn/Wstringop-overflow-8.C: New test.
+
 2021-12-10  David Malcolm  <dmalcolm@redhat.com>
 
 	PR jit/103562
diff --git a/libgcc/ChangeLog b/libgcc/ChangeLog
index 468629c383d..3c06a0a6c37 100644
--- a/libgcc/ChangeLog
+++ b/libgcc/ChangeLog
@@ -1,3 +1,13 @@
+2021-12-11  Rasmus Villemoes  <rasmus.villemoes@prevas.dk>
+
+	* config/vxcrtstuff.c: Make constructor and destructor
+	functions static when possible.
+
+2021-12-11  Rasmus Villemoes  <rasmus.villemoes@prevas.dk>
+
+	* config/vxcrtstuff.c: Remove constructor/destructor
+	declarations.
+
 2021-12-10  Iain Sandoe  <iain@sandoe.co.uk>
 
 	* config/t-darwin: Add libgcc_tm.h to the dependencies
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index ae5752d2c01..b41b2113110 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,9 @@
+2021-12-11  Jason Merrill  <jason@redhat.com>
+
+	PR c++/103534
+	* include/bits/basic_string.h (append (basic_string)): Call pointer
+	append instead of _M_append directly.
+
 2021-12-10  Jakub Jelinek  <jakub@redhat.com>
 
 	PR libstdc++/71367


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

only message in thread, other threads:[~2021-12-12  0:17 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-12-12  0:17 [gcc r12-5914] 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).