This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 00e8690ef0d c++: > in lambda in template arg [PR107953] new 3c95766e92d libstdc++: Implement C++26 <debugging> features [PR119670] new 59db4ce2df1 fixincludes: Skip pthread_incomplete_struct_argument for mo [...]
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: fixincludes/fixincl.tpl | 2 +- fixincludes/fixincl.x | 15 +- fixincludes/inclhack.def | 1 + libstdc++-v3/acinclude.m4 | 36 +++++ libstdc++-v3/config.h.in | 12 ++ libstdc++-v3/configure | 73 +++++++++ libstdc++-v3/configure.ac | 3 + libstdc++-v3/include/Makefile.am | 1 + libstdc++-v3/include/Makefile.in | 1 + libstdc++-v3/include/bits/version.def | 8 + libstdc++-v3/include/bits/version.h | 10 ++ libstdc++-v3/include/precompiled/stdc++.h | 1 + libstdc++-v3/include/std/debugging | 77 +++++++++ libstdc++-v3/src/c++26/Makefile.am | 4 +- libstdc++-v3/src/c++26/Makefile.in | 7 +- libstdc++-v3/src/c++26/debugging.cc | 175 +++++++++++++++++++++ .../19_diagnostics/debugging/breakpoint.cc | 13 ++ .../debugging/breakpoint_if_debugging.cc | 13 ++ .../debugging/is_debugger_present-2.cc | 19 +++ .../debugging/is_debugger_present.cc | 14 ++ 20 files changed, 477 insertions(+), 8 deletions(-) create mode 100644 libstdc++-v3/include/std/debugging create mode 100644 libstdc++-v3/src/c++26/debugging.cc create mode 100644 libstdc++-v3/testsuite/19_diagnostics/debugging/breakpoint.cc create mode 100644 libstdc++-v3/testsuite/19_diagnostics/debugging/breakpoint_if_d [...] create mode 100644 libstdc++-v3/testsuite/19_diagnostics/debugging/is_debugger_pre [...] create mode 100644 libstdc++-v3/testsuite/19_diagnostics/debugging/is_debugger_present.cc