Cron sh /home/gccadmin/scripts/gcc_release -s 13:releases/gcc-13 -l -d /sourceware/snapshot-tmp/gcc all
gcc_release: Sources are commit e6e6f73b486de30e6d323afc4e3d57d853d14184 Touching fixincludes/config.h.in... Touching intl/plural.c... Touching intl/plural-config.h... Touching intl/config.h.in... Touching gcc/configure... Touching gcc/config.in... Touching gcc/config/aarch64/aarch64-tune.md... Touching gcc/config/arm/arm-tune.md... Touching gcc/config/arm/arm-tables.opt... Touching gcc/config/c6x/c6x-tables.opt... Touching gcc/config/c6x/c6x-sched.md... Touching gcc/config/c6x/c6x-mult.md... Touching gcc/config/rs6000/fusion.md... Touching gcc/testsuite/gcc.dg/cpp/_Pragma3.c... Touching c++tools/config.h.in... Touching zlib/aclocal.m4... Touching zlib/Makefile.in... Touching zlib/configure... Touching libffi/aclocal.m4... Touching libffi/Makefile.in... Touching libffi/configure... Touching libffi/fficonfig.h.in... Touching libgfortran/aclocal.m4... Touching libgfortran/Makefile.in... Touching libgm2/aclocal.m4... Touching libgm2/Makefile.in... Touching libquadmath/aclocal.m4... Touching libquadmath/configure... Touching libquadmath/Makefile.in... Touching libgfortran/configure... Touching libcpp/aclocal.m4... Touching libcpp/Makefile.in... Touching libcpp/configure... Touching libgomp/configure.ac... Touching libgomp/aclocal.m4... Touching libgomp/Makefile.am... Touching libgomp/Makefile.in... Touching libgomp/testsuite/Makefile.in... Touching libgomp/configure... Touching libgomp/config.h.in... Touching libitm/aclocal.m4... Touching libitm/Makefile.in... Touching libitm/testsuite/Makefile.in... Touching libitm/configure... Touching libitm/config.h.in... Touching libatomic/aclocal.m4... Touching libatomic/Makefile.in... Touching libatomic/testsuite/Makefile.in... Touching libatomic/configure... Touching libatomic/auto-config.h.in... Touching libsanitizer/aclocal.m4... Touching libsanitizer/Makefile.in... Touching libsanitizer/configure... Touching libsanitizer/asan/Makefile.in... Touching libsanitizer/interception/Makefile.in... Touching libsanitizer/sanitizer_common/Makefile.in... Touching libvtv/aclocal.m4... Touching libvtv/Makefile.in... Touching libvtv/configure... Touching libbacktrace/aclocal.m4... Touching libbacktrace/Makefile.in... Touching libbacktrace/configure... Touching libbacktrace/config.h.in... Touching libphobos/aclocal.m4... Touching libphobos/Makefile.in... Touching libphobos/config.h.in... Touching libphobos/configure... Touching libphobos/src/Makefile.in... Touching libphobos/testsuite/Makefile.in... Touching Makefile.in... Touching configure... mv: cannot stat '../objdir/gcc/po/*.gmo': No such file or directory mv: cannot stat '../objdir/libcpp/po/*.gmo': No such file or directory gcc_release: Building tarfiles gcc_release: Building diffs against version 13-20240406 gcc_release: Uploading files gcc_release: Updating links and READMEs on the FTP server gcc_release: Sending mail
[gcc r14-9958] Daily bump.
https://gcc.gnu.org/g:3319d1a4aa5ccadc22dcb80252ab884c792b263b commit r14-9958-g3319d1a4aa5ccadc22dcb80252ab884c792b263b Author: GCC Administrator Date: Sun Apr 14 00:16:53 2024 + Daily bump. Diff: --- gcc/DATESTAMP | 2 +- gcc/c-family/ChangeLog | 4 gcc/cp/ChangeLog | 47 +++ libstdc++-v3/ChangeLog | 5 + 4 files changed, 57 insertions(+), 1 deletion(-) diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index a25dc7472c0..e82c2e6627d 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20240413 +20240414 diff --git a/gcc/c-family/ChangeLog b/gcc/c-family/ChangeLog index 5c577bbc814..0e8784f9821 100644 --- a/gcc/c-family/ChangeLog +++ b/gcc/c-family/ChangeLog @@ -1,3 +1,7 @@ +2024-04-13 Mark Wielaard + + * c.opt.urls: Regenerate. + 2024-04-12 Jason Merrill Patrick Palka diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 9282af5680a..ae1725e1663 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,50 @@ +2024-04-13 Patrick Palka + + * module.cc (struct bytes_in::bits_in): Define defaulted + move ctor. + (struct bytes_out::bits_out): Likewise. + +2024-04-13 Patrick Palka + + * module.cc: Update comment about classes defined within. + (class data): Enclose in an anonymous namespace. + (data::calc_crc): Moved from bytes::calc_crc. + (class bytes): Remove. Move bit_flush to namespace scope. + (class bytes_in): Enclose in an anonymous namespace. Inherit + directly from data and adjust accordingly. Move b and bflush + members to bits_in. + (class bytes_out): As above. Remove is_set static data member. + (bit_flush): Moved from class bytes. + (struct bytes_in::bits_in): Define. + (struct bytes_out::bits_out): Define. + (bytes_in::stream_bits): Define. + (bytes_out::stream_bits): Define. + (bytes_out::bflush): Moved to bits_out/in. + (bytes_in::bflush): Likewise + (bytes_in::bfill): Removed. + (bytes_out::b): Moved to bits_out/in. + (bytes_in::b): Likewise. + (class trees_in): Enclose in an anonymous namespace. + (class trees_out): Enclose in an anonymous namespace. + (trees_out::core_bools): Add bits_out/in parameter and use it. + Unconditionally stream a bit for public_flag. Add early exits + as appropriate. + (trees_out::core_bools): Likewise. + (trees_out::lang_decl_bools): Add bits_out/in parameter and use + it. Flush the current bit buffer at the start. Unconditionally + stream a bit for module_keyed_decls_p. + (trees_in::lang_decl_bools): Likewise. + (trees_out::lang_type_bools): Add bits_out/in parameter and use + it. Flush the current bit buffer at the start. + (trees_in::lang_type_bools): Likewise. + (trees_out::tree_node_bools): Construct a bits_out object and + use/pass it. + (trees_in::tree_node_bools): Likewise. + (trees_out::decl_value): Likewise. + (trees_in::decl_value): Likewise. + (module_state::write_define): Likewise. + (module_state::read_define): Likewise. + 2024-04-12 Marek Polacek PR c++/109966 diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 8c64ad9a1c7..ce4c07a39c1 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2024-04-13 H.J. Lu + + * config/abi/post/x86_64-linux-gnu/x32/baseline_symbols.txt: + Updated. + 2024-04-11 Jakub Jelinek * doc/xml/manual/abi.xml: Add latest library versions.
[gcc r11-11319] Daily bump.
https://gcc.gnu.org/g:fc38ed00f0b9be2d58decceb39173c40d904bf75 commit r11-11319-gfc38ed00f0b9be2d58decceb39173c40d904bf75 Author: GCC Administrator Date: Sun Apr 14 00:19:38 2024 + Daily bump. Diff: --- gcc/DATESTAMP | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index a25dc7472c0..e82c2e6627d 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20240413 +20240414
[gcc r12-10327] Daily bump.
https://gcc.gnu.org/g:2d575da0c2ca619200fc3cf3c818969b5232aec9 commit r12-10327-g2d575da0c2ca619200fc3cf3c818969b5232aec9 Author: GCC Administrator Date: Sun Apr 14 00:20:13 2024 + Daily bump. Diff: --- gcc/DATESTAMP | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index a25dc7472c0..e82c2e6627d 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20240413 +20240414
Cron sh /home/gccadmin/scripts/update_version_git
2024-04-14 00:16:48,048:INFO:root:=== Working on: master === 2024-04-14 00:16:48,562:INFO:root:branch pulled and checked out 2024-04-14 00:16:48,571:INFO:root:5 revisions since last Daily bump 2024-04-14 00:16:48,702:INFO:root:writing to ./libstdc++-v3/ChangeLog 2024-04-14 00:16:48,906:INFO:root:writing to ./gcc/cp/ChangeLog 2024-04-14 00:16:49,304:INFO:root:writing to ./gcc/cp/ChangeLog 2024-04-14 00:16:49,788:INFO:root:writing to ./gcc/c-family/ChangeLog 2024-04-14 00:16:49,958:INFO:root:DATESTAMP will be changed: 2024-04-14 00:16:56,509:INFO:root:commit is done 2024-04-14 00:17:26,676:INFO:root:branch is pushed 2024-04-14 00:17:26,743:INFO:root:branch is done 2024-04-14 00:17:26,743:INFO:root: 2024-04-14 00:17:44,597:INFO:root:=== Working on: releases/gcc-11 === 2024-04-14 00:19:35,513:INFO:root:branch pulled and checked out 2024-04-14 00:19:35,514:INFO:root:1 revisions since last Daily bump 2024-04-14 00:19:35,523:INFO:root:DATESTAMP will be changed: 2024-04-14 00:19:38,253:INFO:root:commit is done 2024-04-14 00:20:04,306:INFO:root:branch is pushed 2024-04-14 00:20:04,357:INFO:root:branch is done 2024-04-14 00:20:04,357:INFO:root: 2024-04-14 00:20:04,435:INFO:root:=== Working on: releases/gcc-12 === 2024-04-14 00:20:11,096:INFO:root:branch pulled and checked out 2024-04-14 00:20:11,097:INFO:root:1 revisions since last Daily bump 2024-04-14 00:20:11,105:INFO:root:DATESTAMP will be changed: 2024-04-14 00:20:13,873:INFO:root:commit is done 2024-04-14 00:20:39,174:INFO:root:branch is pushed 2024-04-14 00:20:39,230:INFO:root:branch is done 2024-04-14 00:20:39,230:INFO:root: 2024-04-14 00:20:39,275:INFO:root:=== Working on: releases/gcc-13 === 2024-04-14 00:22:17,780:INFO:root:branch pulled and checked out 2024-04-14 00:22:17,781:INFO:root:1 revisions since last Daily bump 2024-04-14 00:22:17,790:INFO:root:DATESTAMP will be changed: 2024-04-14 00:22:20,644:INFO:root:commit is done 2024-04-14 00:22:41,845:INFO:root:branch is pushed 2024-04-14 00:22:41,902:INFO:root:branch is done 2024-04-14 00:22:41,902:INFO:root:
[gcc r13-8602] Daily bump.
https://gcc.gnu.org/g:cb55b5d085833bcc6f739006f7d268a6ffe36f03 commit r13-8602-gcb55b5d085833bcc6f739006f7d268a6ffe36f03 Author: GCC Administrator Date: Sun Apr 14 00:22:20 2024 + Daily bump. Diff: --- gcc/DATESTAMP | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index a25dc7472c0..e82c2e6627d 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20240413 +20240414
Cron sh /home/gccadmin/scripts/update_web_docs_libstdcxx_git
9989 blocks