This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 3d0af0c997f lto: Stream current working directory for first streamed re [...] new f96b6328fa7 [tree-optimization] Don't clear ctrl-altering flag for IFN_UNIQUE new ae6cf62861b Cygwin/MinGW: Do not version lto plugins new d41f8429e9e [testsuite] Add missing require-effective-target allloca new f40866967d6 c++: DECL_LOCAL_FUNCTION_P -> DECL_LOCAL_DECL_P new 1e718ec51a2 libstdc++: Reduce monotonic_buffer_resource overallocation [...] new 30b41cfbb2d libstdc++: handle small max_blocks_per_chunk in pool resour [...] new b0894ae0e7b Fix instruction types. new 57e113cf7c9 arm: Fix up arm_override_options_after_change [PR96939] new d9b054d56b0 arm: Fix up arm_override_options_after_change_1 new 66a204a6567 Add emergency dump after an ICE new 71465223b95 Fix uninitialized variable with nested variant record types new e63eb26d22d Fix bogus error on Value_Size clause for variant record type new 29ff25e7067 d: Warn when casting from a D class to a C++ class. new 27f698bde90 d: Don't warn about variables initialized with 'void' new ead85749b0a d: Enable miscellaneous warnings by -Wextra flag new 0ed757604f4 libphobos: libdruntime doesn't support shadow stack (PR95680) new afea21f9612 libstdc++: Enforce LWG 3472 preconditions on std::counted_iterator new 2b4cc19bd58 libstdc++: Add unused attributes to suppress warnings new ef8b4335d9d libstdc++: Add parentheses around assignments used as truth values new b84b132e38d libstdc++: Clean up inconsistent whitespace new 36efcd7de04 libstdc++: Fix some -Wunused-parameter warnings
The 21 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: gcc/ada/gcc-interface/decl.c | 20 ++- gcc/ada/gcc-interface/misc.c | 4 + gcc/config.host | 6 +- gcc/config/arm/arm.c | 15 +- gcc/config/rs6000/rs6000.md | 8 +- gcc/config/rs6000/vsx.md | 6 +- gcc/cp/call.c | 2 +- gcc/cp/cp-tree.h | 10 +- gcc/cp/decl.c | 19 ++- gcc/cp/name-lookup.c | 45 ++---- gcc/cp/parser.c | 3 +- gcc/cp/pt.c | 5 +- gcc/cp/semantics.c | 2 +- gcc/d/d-convert.cc | 4 +- gcc/d/decl.cc | 35 ++-- gcc/d/lang.opt | 6 +- gcc/testsuite/gcc.dg/analyzer/vla-1.c | 1 + gcc/testsuite/gcc.target/arm/lto/pr96939_0.c | 15 ++ gcc/testsuite/gcc.target/arm/lto/pr96939_1.c | 10 ++ gcc/testsuite/gdc.dg/Waddress.d | 12 ++ gcc/testsuite/gdc.dg/Wcastresult1.d | 18 +++ gcc/testsuite/gdc.dg/Wcastresult2.d | 12 ++ gcc/testsuite/gnat.dg/discr59.adb | 24 +++ gcc/testsuite/gnat.dg/discr59_pkg1.ads | 35 ++++ gcc/testsuite/gnat.dg/discr59_pkg2.ads | 15 ++ gcc/testsuite/gnat.dg/specs/size_clause5.ads | 16 ++ gcc/tree-cfgcleanup.c | 6 +- libcc1/libcp1plugin.cc | 2 +- libphobos/Makefile.am | 10 +- libphobos/Makefile.in | 12 +- libphobos/configure | 15 +- libphobos/configure.ac | 8 +- libphobos/libdruntime/Makefile.am | 6 +- libphobos/libdruntime/Makefile.in | 8 +- libphobos/libdruntime/core/thread.d | 43 +++-- libphobos/libdruntime/gcc/config.d.in | 3 - libphobos/src/Makefile.am | 5 +- libphobos/src/Makefile.in | 7 +- libphobos/testsuite/Makefile.in | 2 +- libphobos/testsuite/testsuite_flags.in | 2 +- libstdc++-v3/include/bits/atomic_base.h | 66 +++++--- libstdc++-v3/include/bits/codecvt.h | 4 +- libstdc++-v3/include/bits/locale_facets_nonio.tcc | 14 +- libstdc++-v3/include/bits/stl_iterator.h | 20 ++- libstdc++-v3/include/c_global/cmath | 4 +- libstdc++-v3/include/ext/new_allocator.h | 2 +- libstdc++-v3/include/std/memory_resource | 6 +- libstdc++-v3/src/c++17/memory_resource.cc | 177 ++++++++++++--------- .../20_util/monotonic_buffer_resource/allocate.cc | 46 ++++++ .../unsynchronized_pool_resource/allocate.cc | 84 +++++++++- lto-plugin/Makefile.am | 2 +- lto-plugin/Makefile.in | 2 +- 52 files changed, 629 insertions(+), 275 deletions(-) create mode 100644 gcc/testsuite/gcc.target/arm/lto/pr96939_0.c create mode 100644 gcc/testsuite/gcc.target/arm/lto/pr96939_1.c create mode 100644 gcc/testsuite/gdc.dg/Waddress.d create mode 100644 gcc/testsuite/gdc.dg/Wcastresult1.d create mode 100644 gcc/testsuite/gdc.dg/Wcastresult2.d create mode 100644 gcc/testsuite/gnat.dg/discr59.adb create mode 100644 gcc/testsuite/gnat.dg/discr59_pkg1.ads create mode 100644 gcc/testsuite/gnat.dg/discr59_pkg2.ads create mode 100644 gcc/testsuite/gnat.dg/specs/size_clause5.ads