This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 90dde804626 libstdc++: Handle cv-qualified types in atomic and atomic_r [...] new 8bd872f1ea7 libstdc++: Implement P3107R5 optimizations for std::print [ [...] new c8b388a9489 libstdc++: Implement P3235R3 optimizations for std::print [ [...]
The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: libstdc++-v3/acinclude.m4 | 83 ++++++ libstdc++-v3/config.h.in | 9 + libstdc++-v3/configure | 148 +++++++++++ libstdc++-v3/configure.ac | 3 + libstdc++-v3/include/bits/chrono_io.h | 172 +++++++++++++ libstdc++-v3/include/bits/formatfwd.h | 5 + libstdc++-v3/include/bits/version.def | 2 +- libstdc++-v3/include/bits/version.h | 4 +- libstdc++-v3/include/std/format | 108 +++++++- libstdc++-v3/include/std/ostream | 17 +- libstdc++-v3/include/std/print | 284 ++++++++++++++++++++- libstdc++-v3/include/std/queue | 15 ++ libstdc++-v3/include/std/stack | 7 + libstdc++-v3/include/std/stacktrace | 12 + libstdc++-v3/include/std/thread | 7 + libstdc++-v3/include/std/vector | 7 + .../testsuite/23_containers/vector/bool/format.cc | 1 + libstdc++-v3/testsuite/27_io/print/1.cc | 56 +++- .../testsuite/30_threads/thread/id/output.cc | 5 +- .../testsuite/std/format/formatter/nonlocking.cc | 59 +++++ .../testsuite/std/format/ranges/adaptors.cc | 10 + .../testsuite/std/format/ranges/formatter.cc | 14 +- libstdc++-v3/testsuite/std/format/tuple.cc | 37 +++ .../testsuite/std/time/format/custom_rep.h | 92 +++++++ .../testsuite/std/time/format/empty_spec.cc | 89 +------ .../testsuite/std/time/format/nonlocking.cc | 164 ++++++++++++ 26 files changed, 1297 insertions(+), 113 deletions(-) create mode 100644 libstdc++-v3/testsuite/std/format/formatter/nonlocking.cc create mode 100644 libstdc++-v3/testsuite/std/time/format/custom_rep.h create mode 100644 libstdc++-v3/testsuite/std/time/format/nonlocking.cc